mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
24 lines
1.1 KiB
C#
24 lines
1.1 KiB
C#
|
using TINK.Repository;
|
||
|
|
||
|
namespace TestFramework.Repository
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Holds some COPRI responses for testing purposes.
|
||
|
/// </summary>
|
||
|
/// <remarks> Holds some demo Mein konrad and LastenradBayern bikes
|
||
|
/// </remarks>
|
||
|
public class CopriCallsMemory001v2NotLoggedIn : CopriCallMemoryBase, ICopriServer
|
||
|
{
|
||
|
public CopriCallsMemory001v2NotLoggedIn(string sessionCookie = null, string merchantId = null) : base(
|
||
|
bikesAvailableResponseResource: "TestFramework.Repository.CopriCallsMemory001v2NotLoggedIn.BikesAvailableResponse.json",
|
||
|
bikesOccupiedResponseResoure: "TestFramework.Repository.CopriCallsMemory001v2NotLoggedIn.BikesOccupiedResponse.json",
|
||
|
authResponseResource: "TestFramework.Repository.CopriCallsMemory001v2NotLoggedIn.AuthorizationResponse.json",
|
||
|
authOutResponseResource: "TestFramework.Repository.CopriCallsMemory001v2NotLoggedIn.AuthoutResponse.json",
|
||
|
stationsResponseResource: "TestFramework.Repository.CopriCallsMemory001v2NotLoggedIn.StationsAvailable.json",
|
||
|
sessionCookie: sessionCookie,
|
||
|
merchantId: merchantId)
|
||
|
{ }
|
||
|
}
|
||
|
|
||
|
}
|