sharee.bike-App/SharedBusinessLogic.Tests/Model/Bikes/BikeInfoNS/TestBikeCollection.cs
2024-04-09 12:53:23 +02:00

22 lines
377 B
C#

using NUnit.Framework;
using ShareeBike.Model.Bikes;
namespace SharedBusinessLogic.Tests
{
[TestFixture]
public class TestBikeCollection
{
/// <summary> Tests the member.</summary>
[Test]
public void TestConstruct()
{
var l_oColl = new BikeCollection();
Assert.That(l_oColl.Count, Is.EqualTo(0));
Assert.That(l_oColl.GetById("1"), Is.Null);
}
}
}