sharee.bike-App/TestShareeLib/Model/Bike/BC/TestBikeMutable.cs

81 lines
3.2 KiB
C#
Raw Normal View History

2021-05-13 20:09:46 +02:00
using System;
using System.Collections.Generic;
using NUnit.Framework;
using TINK.Model.Bike;
using TINK.Model.Bikes.Bike;
using TINK.Model.State;
namespace TestTINKLib
{
[TestFixture]
class TestBikeMutable
{
private class BikeInfoMutable : TINK.Model.Bike.BC.BikeInfoMutable
{
public BikeInfoMutable(
2021-06-26 20:57:55 +02:00
string id,
2021-05-13 20:09:46 +02:00
bool isDemo = false,
IEnumerable<string> group = null,
WheelType? wheelType = null,
TypeOfBike? typeOfBike = null,
string description = null,
2021-06-26 20:57:55 +02:00
string currentStationId = null,
2021-05-13 20:09:46 +02:00
Uri operatorUri = null,
TariffDescription tariffDescription = null,
Func<DateTime> dateTimeProvider = null,
IStateInfo stateInfo = null) : base(id, isDemo, group, wheelType, typeOfBike, description, currentStationId, operatorUri, tariffDescription, dateTimeProvider, stateInfo)
{
}
}
[Test]
public void TestConstruct()
{
var l_oBike = new BikeInfoMutable(
2021-06-26 20:57:55 +02:00
"42",
2021-05-13 20:09:46 +02:00
false,
new List<string> { "TINK" },
WheelType.Two,
TypeOfBike.Cargo);
2021-06-26 20:57:55 +02:00
Assert.AreEqual("42", l_oBike.Id);
2021-05-13 20:09:46 +02:00
Assert.IsFalse(l_oBike.IsDemo);
Assert.AreEqual(WheelType.Two, l_oBike.WheelType);
Assert.AreEqual(TypeOfBike.Cargo, l_oBike.TypeOfBike);
Assert.AreEqual(InUseStateEnum.Disposable, l_oBike.State.Value);
Assert.IsNull(l_oBike.CurrentStation);
l_oBike = new BikeInfoMutable(
2021-06-26 20:57:55 +02:00
"17",
2021-05-13 20:09:46 +02:00
true,
new List<string> { "TINK" },
WheelType.Mono,
TypeOfBike.Allround,
"Test description",
2021-06-26 20:57:55 +02:00
"1");
2021-05-13 20:09:46 +02:00
2021-06-26 20:57:55 +02:00
Assert.AreEqual("17", l_oBike.Id);
2021-05-13 20:09:46 +02:00
Assert.IsTrue(l_oBike.IsDemo);
Assert.AreEqual(WheelType.Mono, l_oBike.WheelType);
Assert.AreEqual(TypeOfBike.Allround, l_oBike.TypeOfBike);
Assert.AreEqual(InUseStateEnum.Disposable, l_oBike.State.Value);
2021-06-26 20:57:55 +02:00
Assert.AreEqual("1", l_oBike.CurrentStation);
2021-05-13 20:09:46 +02:00
}
[Test]
public void TestToString()
{
2021-06-26 20:57:55 +02:00
var l_oBike = new BikeInfoMutable("3", false, new List<string> { "TINK" }, WheelType.Two, TypeOfBike.Cargo, dateTimeProvider: () => new DateTime(1970, 1, 1));
2021-05-13 20:09:46 +02:00
Assert.AreEqual(
"Id=3, wheel(s)=Two, type=Cargo, demo=False, state=Disposable, location=On the road.",
l_oBike.ToString());
2021-06-26 20:57:55 +02:00
l_oBike = new BikeInfoMutable("3", true, new List<string> { "TINK" }, WheelType.Trike, TypeOfBike.Allround, "Test description", "5", dateTimeProvider: () => new DateTime(1970, 1, 1));
2021-05-13 20:09:46 +02:00
Assert.AreEqual(
"Id=3, wheel(s)=Trike, type=Allround, demo=True, state=Disposable, location=Station 5.",
l_oBike.ToString());
}
}
}