mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
18 lines
300 B
C#
18 lines
300 B
C#
using NUnit.Framework;
|
|
using TINK.Model;
|
|
|
|
namespace TestShareeLib.Model
|
|
{
|
|
[TestFixture]
|
|
public class TestBookingFinishedModel
|
|
{
|
|
[Test]
|
|
public void TestCtor()
|
|
{
|
|
Assert.That(
|
|
new BookingFinishedModel().MiniSurvey,
|
|
Is.Not.Null,
|
|
"Avoid object not set to eqception.");
|
|
}
|
|
}
|
|
}
|