sharee.bike-App/TestShareeLib/Model/Bike/TestBikeCollection.cs
Anja Müller-Meißner 573fe77e12 Version 3.0.337
2022-08-30 15:42:25 +02:00

22 lines
411 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"));
}
}
}