sharee.bike-App/TestShareeLib/Model/Station/TestData.cs

59 lines
1,000 B
C#
Raw Normal View History

2023-04-19 12:14:14 +02:00
using NUnit.Framework;
namespace TestShareeLib.Model.Station
{
2022-09-06 16:08:19 +02:00
[TestFixture]
public class TestData
{
[Test]
public void TestCtor()
{
2023-04-19 12:14:14 +02:00
var data = new TINK.Model.Stations.StationNS.Operator.Data();
2022-09-06 16:08:19 +02:00
Assert.That(
data.Color,
Is.Null);
Assert.That(
data.Hours,
Is.EqualTo(string.Empty));
Assert.That(
data.Name,
Is.EqualTo(string.Empty));
Assert.That(
data.MailAddressText,
Is.EqualTo(string.Empty));
Assert.That(
data.PhoneNumberText,
Is.EqualTo(string.Empty));
}
[Test]
public void TestCtor_Null()
{
2023-04-19 12:14:14 +02:00
var data = new TINK.Model.Stations.StationNS.Operator.Data(null, null, null, null, null);
2022-09-06 16:08:19 +02:00
Assert.That(
data.Color,
Is.Null);
Assert.That(
data.Hours,
Is.EqualTo(string.Empty));
Assert.That(
data.Name,
Is.EqualTo(string.Empty));
Assert.That(
data.MailAddressText,
Is.EqualTo(string.Empty));
Assert.That(
data.PhoneNumberText,
Is.EqualTo(string.Empty));
}
}
}