Version 3.0.294

This commit is contained in:
Oliver Hauff 2022-04-25 22:15:15 +02:00
parent d92fb4a40f
commit 8f40f2c208
133 changed files with 17890 additions and 14246 deletions

View file

@ -12,7 +12,7 @@ namespace TestTINKLib.Fixtures.ObjectTests.Model.Repository.Request
{
var builder = new RequestBuilderLoggedIn("MyMeranctIt", "MySessionCookie");
Assert.That(
builder.UpateLockingState("12", null, lock_state.locked, 15.03),
builder.UpateLockingState("12", lock_state.locked, null, 15.03),
Is.EqualTo("request=booking_update&bike=12&lock_state=locked&voltage=15.03&authcookie=MySessionCookieMyMeranctIt"));
}
@ -21,7 +21,7 @@ namespace TestTINKLib.Fixtures.ObjectTests.Model.Repository.Request
{
var builder = new RequestBuilderLoggedIn("MyMeranctIt", "MySessionCookie");
Assert.That(
builder.UpateLockingState("12", null, lock_state.locked, double.NaN),
builder.UpateLockingState("12", lock_state.locked, null, double.NaN),
Is.EqualTo("request=booking_update&bike=12&lock_state=locked&authcookie=MySessionCookieMyMeranctIt"));
}
@ -30,7 +30,7 @@ namespace TestTINKLib.Fixtures.ObjectTests.Model.Repository.Request
{
var builder = new RequestBuilderLoggedIn("MyMeranctIt", "MySessionCookie");
Assert.That(
builder.UpateLockingState("12", new LocationDto.Builder { Latitude = 21, Longitude = 17, Age = new TimeSpan(0, 0, 0, 0, 70) }.Build(), lock_state.locked, 12),
builder.UpateLockingState("12", lock_state.locked, new LocationDto.Builder { Latitude = 21, Longitude = 17, Age = new TimeSpan(0, 0, 0, 0, 70) }.Build(), 12),
Is.EqualTo("request=booking_update&bike=12&gps=21,17&gps_age=0.07&lock_state=locked&voltage=12&authcookie=MySessionCookieMyMeranctIt"));
}
@ -39,7 +39,7 @@ namespace TestTINKLib.Fixtures.ObjectTests.Model.Repository.Request
{
var builder = new RequestBuilderLoggedIn("MyMeranctIt", "MySessionCookie");
Assert.That(
builder.UpateLockingState("12", new LocationDto.Builder { Latitude = 21, Longitude = 17, Age = new TimeSpan(0, 0, 0, 0, 70) }.Build(), lock_state.locked, double.NaN),
builder.UpateLockingState("12", lock_state.locked, new LocationDto.Builder { Latitude = 21, Longitude = 17, Age = new TimeSpan(0, 0, 0, 0, 70) }.Build(), double.NaN),
Is.EqualTo("request=booking_update&bike=12&gps=21,17&gps_age=0.07&lock_state=locked&authcookie=MySessionCookieMyMeranctIt"));
}
@ -48,7 +48,7 @@ namespace TestTINKLib.Fixtures.ObjectTests.Model.Repository.Request
{
var builder = new RequestBuilderLoggedIn("MyMeranctIt", "MySessionCookie");
Assert.That(
builder.UpateLockingState("12", new LocationDto.Builder { Latitude = 21, Longitude = 17, Accuracy = 5.7, Age = new TimeSpan(0, 0, 0, 0, 70) }.Build(), lock_state.locked, 98),
builder.UpateLockingState("12", lock_state.locked, new LocationDto.Builder { Latitude = 21, Longitude = 17, Accuracy = 5.7, Age = new TimeSpan(0, 0, 0, 0, 70) }.Build(), 98),
Is.EqualTo("request=booking_update&bike=12&gps=21,17&gps_accuracy=5.7&gps_age=0.07&lock_state=locked&voltage=98&authcookie=MySessionCookieMyMeranctIt"));
}