()
| 90 | } |
| 91 | |
| 92 | function assertTrue() { |
| 93 | _validateArguments(1, arguments); |
| 94 | var booleanValue=nonCommentArg(1, 1, arguments); |
| 95 | |
| 96 | if (typeof(booleanValue) != 'boolean') |
| 97 | error('Bad argument to assertTrue(boolean)'); |
| 98 | |
| 99 | _assert(commentArg(1, arguments), booleanValue === true, 'Call to assertTrue(boolean) with false'); |
| 100 | } |
| 101 | |
| 102 | function assertFalse() { |
| 103 | _validateArguments(1, arguments); |
nothing calls this directly
no test coverage detected