sharee.bike-App/SharedBusinessLogic.Tests/Model/TestBookingFinishedModel.cs

19 lines
315 B
C#
Raw Normal View History

2024-04-09 12:53:23 +02:00
using NUnit.Framework;
using ShareeBike.Model;
2021-12-08 17:57:30 +01:00
2024-04-09 12:53:23 +02:00
namespace SharedBusinessLogic.Tests.Model
2021-12-08 17:57:30 +01:00
{
2022-09-06 16:08:19 +02:00
[TestFixture]
public class TestBookingFinishedModel
{
[Test]
public void TestCtor()
{
Assert.That(
new BookingFinishedModel().MiniSurvey,
Is.Not.Null,
2024-04-09 12:53:23 +02:00
"Avoid object not set to exception.");
2022-09-06 16:08:19 +02:00
}
}
2021-12-08 17:57:30 +01:00
}