using NUnit.Framework; using ShareeBike.Model; namespace SharedBusinessLogic.Tests.Model { [TestFixture] public class TestBookingFinishedModel { [Test] public void TestCtor() { Assert.That( new BookingFinishedModel().MiniSurvey, Is.Not.Null, "Avoid object not set to exception."); } } }