mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 02:26:29 +01:00
18 lines
427 B
C#
18 lines
427 B
C#
|
using NUnit.Framework;
|
|||
|
using TINK.Model.Bike.BC;
|
|||
|
|
|||
|
namespace TestTINKLib.Fixtures.ObjectTests.Bike.BC
|
|||
|
{
|
|||
|
[TestFixture]
|
|||
|
public class TestBikeInfo
|
|||
|
{
|
|||
|
[Test]
|
|||
|
public void TestCtorCopyNull()
|
|||
|
{
|
|||
|
Assert.Throws<System.ArgumentException>(
|
|||
|
() => new BikeInfo(null),
|
|||
|
"Verify that no unspecific reference not set to... exception is thrown");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|