sharee.bike-App/TestShareeLib/Model/Bikes/BikeInfoNS/TestBikeCollection.cs
2023-02-28 16:03:56 +01:00

22 lines
342 B
C#

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