Beispiel #1
0
        public void AuthStep1_returns_transaction_id()
        {
            var client = SetupPostWithFixture("auth-step1-response");
            var result = Remote.AuthStep1(ClientInfo, client.Object);

            Assert.That(result, Is.EqualTo("6cdfcd43-065c-43a1-aa7a-017de98eefd0"));
        }
Beispiel #2
0
 public void AuthStep1_throws_on_common_errors()
 {
     VerifyAllCommonErrorsWithPost(http => Remote.AuthStep1(ClientInfo, http));
 }