sharee.bike-App/TestShareeLib/Model/Bike/TestBikeCollection.cs

22 lines
342 B
C#
Raw Normal View History

2021-05-13 20:09:46 +02:00
using NUnit.Framework;
2022-08-30 15:42:25 +02:00
using TINK.Model.Bikes;
2021-05-13 20:09:46 +02:00
namespace TestTINKLib
{
2022-08-30 15:42:25 +02:00
2022-09-06 16:08:19 +02:00
[TestFixture]
public class TestBikeCollection
{
/// <summary> Tests the member.</summary>
[Test]
public void TestConstruct()
{
var l_oColl = new BikeCollection();
2021-05-13 20:09:46 +02:00
2022-09-06 16:08:19 +02:00
Assert.AreEqual(0, l_oColl.Count);
Assert.IsNull(l_oColl.GetById("1"));
}
}
2021-05-13 20:09:46 +02:00
}