using NUnit.Framework;
using TINK.Model.Bike.BC;
namespace TestTINKLib.Fixtures.ObjectTests.Bike.BC
{
///
/// Moved to TestShareeLib (.Net Core)
///
[TestFixture]
public class TestBikeInfo
{
[Test]
public void TestCtorCopyNull()
{
Assert.Throws(
() => new BikeInfo(null),
"Verify that no unspecific reference not set to... exception is thrown");
}
}
}