Open.Core.Assert.That C# (CSharp) Method

That() public static method

Factory method for starting an assertion.
public static That ( object value ) : Assert
value object The value being examined.
return Assert
        public static Assert That(object value)
        {
            return new Assert(value);
        }
        #endregion