BraintreeEncryption.Library.Tests.TestHelper.IsNotEmpty C# (CSharp) Method

IsNotEmpty() public static method

public static IsNotEmpty ( string value ) : void
value string
return void
        public static void IsNotEmpty(string value)
        {
            Assert.IsFalse(value.Equals(""));
        }

Usage Example

 public void GetsVersion()
 {
     TestHelper.IsNotEmpty(_braintree.GetVersion());
 }