(bool expected)
| 353 | } |
| 354 | |
| 355 | public static string BooleanFailureMessage(bool expected) |
| 356 | { |
| 357 | return GetMessage(string.Concat("Value was ", !expected), expected.ToString()); |
| 358 | } |
| 359 | |
| 360 | public static string GetEqualityMessage(object actual, object expected, bool expectEqual) |
| 361 | { |
nothing calls this directly
no test coverage detected