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

23 lines
428 B
C#
Raw Normal View History

2021-05-13 20:09:46 +02:00
using NUnit.Framework;
using System;
using TINK.Model.Bike;
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);
2021-06-26 20:57:55 +02:00
Assert.IsNull(l_oColl.GetById("1"));
2021-05-13 20:09:46 +02:00
}
}
}