コード例 #1
0
 /// <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"></param>
 /// <typeparam name="T">Type of the object being tested</typeparam>
 public static void Be <T>(
     this ICollectionTo <T> be,
     object expected,
     string customMessage)
 {
     be.Be(expected, () => customMessage);
 }
コード例 #2
0
 /// <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 void Be <T>(
     this ICollectionTo <T> be,
     object expected)
 {
     be.Be(expected, NULL_STRING);
 }