()
| 130 | } |
| 131 | |
| 132 | function assertNotNull() { |
| 133 | _validateArguments(1, arguments); |
| 134 | var aVar=nonCommentArg(1, 1, arguments); |
| 135 | _assert(commentArg(1, arguments), aVar !== null, 'Expected not to be null'); |
| 136 | } |
| 137 | |
| 138 | function assertUndefined() { |
| 139 | _validateArguments(1, arguments); |
nothing calls this directly
no test coverage detected