Braintree.Tests.CustomerTest.Find_RaisesIfIdIsBlank C# (CSharp) Method

Find_RaisesIfIdIsBlank() private method

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