mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
61 lines
1.4 KiB
C#
61 lines
1.4 KiB
C#
using NUnit.Framework;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace TestShareeLib.Model.Station
|
|
{
|
|
[TestFixture]
|
|
public class TestData
|
|
{
|
|
[Test]
|
|
public void TestCtor()
|
|
{
|
|
var data = new TINK.Model.Station.Operator.Data();
|
|
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()
|
|
{
|
|
var data = new TINK.Model.Station.Operator.Data(null, null, null, null, null);
|
|
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));
|
|
}
|
|
}
|
|
}
|