mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 18:46:30 +01:00
21 lines
377 B
C#
21 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);
|
|
}
|
|
}
|
|
}
|