(self: boolean, message?: string, ..._: Array<never>)
| 62 | } |
| 63 | |
| 64 | export function assertFalse(self: boolean, message?: string, ..._: Array<never>) { |
| 65 | strictEqual(self, false, message) |
| 66 | } |
| 67 | |
| 68 | export function assertInclude(actual: string | undefined, expected: string, ..._: Array<never>) { |
| 69 | if (Predicate.isString(expected)) { |
nothing calls this directly
no test coverage detected