public void TestIntegrationSuccess() { var service = new PayPalService(); var transaction = service.GetTransactionData("0X158626EH703433F"); Assert.AreEqual(true, transaction.IsPopulated); }
public void TestIntegrationFailure() { var service = new PayPalService(); var transaction = service.GetTransactionData("0X158626EH703433FXXX"); Assert.AreEqual(TransactionState.Failure, transaction.State); }