mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 18:46:30 +01:00
26 lines
502 B
C#
26 lines
502 B
C#
|
using NUnit.Framework;
|
|||
|
using System;
|
|||
|
using TINK.Model.Bike;
|
|||
|
|
|||
|
|
|||
|
namespace TestTINKLib
|
|||
|
{
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Moved to TestShareeLib (.Net Core)
|
|||
|
/// </summary>
|
|||
|
[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));
|
|||
|
}
|
|||
|
}
|
|||
|
}
|