(req, ctor_name)
| 85 | } |
| 86 | |
| 87 | function testUninitialized(req, ctor_name) { |
| 88 | assert.strictEqual(typeof req.getAsyncId, 'function'); |
| 89 | assert.strictEqual(req.getAsyncId(), -1); |
| 90 | assert.strictEqual(req.constructor.name, ctor_name); |
| 91 | } |
| 92 | |
| 93 | function testInitialized(req, ctor_name) { |
| 94 | assert.strictEqual(typeof req.getAsyncId, 'function'); |
no test coverage detected
searching dependent graphs…