mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-04 18:26:25 +01:00
17 lines
427 B
C#
17 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");
|
|
}
|
|
}
|
|
}
|