Initial version

This commit is contained in:
Oliver Hauff 2021-05-13 20:09:46 +02:00
parent 41b618cb27
commit e4fb48f6ab
24 changed files with 4387 additions and 0 deletions

View file

@ -0,0 +1,17 @@
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");
}
}
}