()
| 5 | } |
| 6 | |
| 7 | function TestCase() { |
| 8 | /* TestCase objects have a setUp() and a tearDown() method, |
| 9 | * called before and after each test respectively. |
| 10 | * Tests in a TestCase have method names starting with "test". |
| 11 | */ |
| 12 | this.setUp = function() { |
| 13 | return; |
| 14 | }; |
| 15 | this.tearDown = function() { |
| 16 | return; |
| 17 | }; |
| 18 | this.testMethod = function() { |
| 19 | assert(true == false); |
| 20 | }; |
| 21 | } |
| 22 | |
| 23 | function run(tests) { |
| 24 | /* Executes each method which name starts with "test", |
nothing calls this directly
no test coverage detected
searching dependent graphs…