/// <summary> /// Performs reference equality checking between your actual and the provided expected value /// </summary> /// <param name="be">Continuation to operate on</param> /// <param name="expected">Expected value</param> /// <param name="customMessage">Custom message to add to failure messages</param> /// <typeparam name="T">Type of the object being tested</typeparam> public static IMore <T> Be <T>( this INotAfterTo <T> be, object expected, string customMessage) { return(be.Be(expected, () => customMessage)); }
/// <summary> /// Performs reference equality checking between your actual and the provided expected value /// </summary> /// <param name="be">Continuation to operate on</param> /// <param name="expected">Expected value</param> /// <typeparam name="T">Type of the object being tested</typeparam> public static IMore <T> Be <T>(this INotAfterTo <T> be, object expected) { return(be.Be(expected, NULL_STRING)); }