(test, value, length)
| 1 | function testLength(test, value, length) { |
| 2 | |
| 3 | if (typeof value !== "function" || typeof length !== "number") |
| 4 | return; |
| 5 | |
| 6 | test._("Function length is " + length) |
| 7 | .equals(value.length, length); |
| 8 | } |
| 9 | |
| 10 | export function testMethodProperty(test, object, key, options) { |
| 11 |
no outgoing calls
no test coverage detected