2021-07-12 21:31:46 +02:00
|
|
|
|
using NUnit.Framework;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using TINK.Model.Station;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace TestTINKLib.Fixtures.Station
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
[TestFixture]
|
|
|
|
|
public class TestStation
|
|
|
|
|
{
|
|
|
|
|
[Test]
|
|
|
|
|
public void TestConstruct()
|
|
|
|
|
{
|
|
|
|
|
var l_oStation = new TINK.Model.Station.Station("7", new HashSet<string>(new List<string> { "TINK" }).ToList(), new Position(1,2), "Hallo");
|
|
|
|
|
Assert.AreEqual("7", l_oStation.Id);
|
|
|
|
|
Assert.AreEqual("TINK", string.Join(",", l_oStation.Group));
|
|
|
|
|
Assert.AreEqual(1, l_oStation.Position.Latitude);
|
|
|
|
|
Assert.AreEqual(2, l_oStation.Position.Longitude);
|
|
|
|
|
Assert.AreEqual("Hallo", l_oStation.StationName);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void TestConstruct_InvalidStationName()
|
|
|
|
|
{
|
|
|
|
|
var l_oStation = new TINK.Model.Station.Station("7", new HashSet<string>(new List<string> { "TINK" }).ToList(), new Position(1, 2), null);
|
|
|
|
|
Assert.AreEqual("7", l_oStation.Id);
|
|
|
|
|
Assert.AreEqual("TINK", string.Join(",", l_oStation.Group));
|
|
|
|
|
Assert.AreEqual(1, l_oStation.Position.Latitude);
|
|
|
|
|
Assert.AreEqual(2, l_oStation.Position.Longitude);
|
|
|
|
|
Assert.AreEqual("", l_oStation.StationName);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void TestConstruct_InvalidStationGroup()
|
|
|
|
|
{
|
|
|
|
|
Assert.Throws<ArgumentException>(() => new TINK.Model.Station.Station("7", null, new Position(1, 2), "Hallo"));
|
|
|
|
|
}
|
2021-07-20 23:06:09 +02:00
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void TestConstruct_NoOperator()
|
|
|
|
|
{
|
|
|
|
|
Assert.That(
|
|
|
|
|
new TINK.Model.Station.Station("7", new List<string>(), new Position(1, 2), "Hallo").OperatorData,
|
|
|
|
|
Is.Not.Null);
|
|
|
|
|
}
|
2021-07-12 21:31:46 +02:00
|
|
|
|
}
|
|
|
|
|
}
|