mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 18:46:30 +01:00
40 lines
1.2 KiB
C#
40 lines
1.2 KiB
C#
|
using NUnit.Framework;
|
|||
|
using TINK.Repository.Exception;
|
|||
|
|
|||
|
namespace TestTINKLib.Fixtures.ObjectTests.Repository.Exception
|
|||
|
{
|
|||
|
[TestFixture]
|
|||
|
public class TestBookingDeclinedException
|
|||
|
{
|
|||
|
[Test]
|
|||
|
public void TestIsBookingDeclined()
|
|||
|
{
|
|||
|
const string responseText = "OK: BOOKING_REQUEST declined. Max count of 8 occupied bikes has been reached";
|
|||
|
|
|||
|
BookingDeclinedException exception = null;
|
|||
|
|
|||
|
Assert.That(() => BookingDeclinedException.IsBookingDeclined(responseText, out exception),
|
|||
|
Is.EqualTo(true));
|
|||
|
|
|||
|
Assert.That(() => exception.MaxBikesCount,
|
|||
|
Is.EqualTo(8));
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
[Test]
|
|||
|
public void TestIsBookingDeclined_InvalidNumber()
|
|||
|
{
|
|||
|
const string responseText = "OK: BOOKING_REQUEST declined. Max count of 8 occupied bikes has been reached";
|
|||
|
|
|||
|
BookingDeclinedException exception = null;
|
|||
|
|
|||
|
Assert.That(() => BookingDeclinedException.IsBookingDeclined(responseText, out exception),
|
|||
|
Is.EqualTo(true));
|
|||
|
|
|||
|
Assert.That(() => exception.MaxBikesCount,
|
|||
|
Is.EqualTo(8));
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
}
|