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