(actual: T, expected: T, msg: string)
| 79 | } |
| 80 | |
| 81 | export function assertGreaterThan<T>(actual: T, expected: T, msg: string): asserts actual is T { |
| 82 | if (!(actual > expected)) { |
| 83 | throwError(msg, actual, expected, '>'); |
| 84 | } |
| 85 | } |
| 86 | |
| 87 | export function assertGreaterThanOrEqual<T>( |
| 88 | actual: T, |
no test coverage detected
searching dependent graphs…