Exemplo n.º 1
0
        public void It_should_get_a_funding_source_by_id()
        {
            // arrange
            var fundingService = new DwollaFundingService();

            // act
            DwollaResponse<DwollaFund> response = fundingService
                .GetById(TestOAuthToken, TestFundId);

            // assert
            response.Success.ShouldBeTrue();
        }