Braintree.Tests.Integration.CustomerIntegrationTest.Find_RaisesIfIdIsInvalid C# (CSharp) Method

Find_RaisesIfIdIsInvalid() private method

private Find_RaisesIfIdIsInvalid ( ) : void
return void
        public void Find_RaisesIfIdIsInvalid()
        {
            Assert.Throws<NotFoundException>(() => gateway.Customer.Find("DOES_NOT_EXIST_999"));
        }
CustomerIntegrationTest