(expression)
| 1 | function assert(expression) { |
| 2 | /* Throws AssertException if the given expression evaluates to false. |
| 3 | */ |
| 4 | if (!expression) throw "AssertException"; |
| 5 | } |
| 6 | |
| 7 | function TestCase() { |
| 8 | /* TestCase objects have a setUp() and a tearDown() method, |
no outgoing calls
no test coverage detected
searching dependent graphs…