()
| 100 | } |
| 101 | |
| 102 | function assertFalse() { |
| 103 | _validateArguments(1, arguments); |
| 104 | var booleanValue=nonCommentArg(1, 1, arguments); |
| 105 | |
| 106 | if (typeof(booleanValue) != 'boolean') |
| 107 | error('Bad argument to assertFalse(boolean)'); |
| 108 | |
| 109 | _assert(commentArg(1, arguments), booleanValue === false, 'Call to assertFalse(boolean) with true'); |
| 110 | } |
| 111 | |
| 112 | function assertEquals() { |
| 113 | _validateArguments(2, arguments); |
nothing calls this directly
no test coverage detected