(actual: T, expected: T, msg: string)
| 61 | } |
| 62 | |
| 63 | export function assertNotSame<T>(actual: T, expected: T, msg: string) { |
| 64 | if (!(actual !== expected)) { |
| 65 | throwError(msg, actual, expected, '!=='); |
| 66 | } |
| 67 | } |
| 68 | |
| 69 | export function assertLessThan<T>(actual: T, expected: T, msg: string): asserts actual is T { |
| 70 | if (!(actual < expected)) { |
no test coverage detected
searching dependent graphs…