(object value, bool expectNull)
| 385 | } |
| 386 | |
| 387 | public static string NullFailureMessage(object value, bool expectNull) |
| 388 | { |
| 389 | return GetMessage(string.Format("Value was {0}Null", new object[] { !expectNull ? string.Empty : "not " }), string.Format("Value was {0}Null", new object[] { !expectNull ? "not " : string.Empty })); |
| 390 | } |
| 391 | } |
| 392 | } |
nothing calls this directly
no test coverage detected