mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
39 lines
1,005 B
C#
39 lines
1,005 B
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));
|
|
|
|
}
|
|
}
|
|
}
|