sharee.bike-App/TestShareeLib/Model/Bike/BC/TestBikeInfo.cs
2021-05-13 20:09:46 +02:00

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");
}
}
}