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

            // act
            DwollaResponse<IList<DwollaFund>> response = fundingService
                .List(TestOAuthToken);

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