Braintree.Tests.Integration.TransactionIntegrationTest.Search_ReturnsErrorOnTimeout C# (CSharp) Method

Search_ReturnsErrorOnTimeout() private method

private Search_ReturnsErrorOnTimeout ( ) : void
return void
        public void Search_ReturnsErrorOnTimeout()
        {
            TransactionSearchRequest searchRequest = new TransactionSearchRequest().
                Amount.Is(-5);
            Assert.Throws<DownForMaintenanceException>(() => gateway.Transaction.Search(searchRequest));
        }
TransactionIntegrationTest