(name, testName, expected, testEnvironmentArg, async, callback)
| 24 | var testId = 0; |
| 25 | |
| 26 | var Test = function(name, testName, expected, testEnvironmentArg, async, callback) { |
| 27 | this.name = name; |
| 28 | this.testName = testName; |
| 29 | this.expected = expected; |
| 30 | this.testEnvironmentArg = testEnvironmentArg; |
| 31 | this.async = async; |
| 32 | this.callback = callback; |
| 33 | this.assertions = []; |
| 34 | }; |
| 35 | Test.prototype = { |
| 36 | init: function() { |
| 37 | var tests = id("qunit-tests"); |
nothing calls this directly
no outgoing calls
no test coverage detected