sharee.bike-App/SharedBusinessLogic.Tests/Model/TestBookingFinishedModel.cs
2024-04-09 12:53:23 +02:00

19 lines
315 B
C#

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