(algorithm, extractable, usages)
| 55 | }); |
| 56 | |
| 57 | function parameterString(algorithm, extractable, usages) { |
| 58 | var result = "(" + |
| 59 | objectToString(algorithm) + ", " + |
| 60 | objectToString(extractable) + ", " + |
| 61 | objectToString(usages) + |
| 62 | ")"; |
| 63 | |
| 64 | return result; |
| 65 | } |
| 66 | |
| 67 | // Test that a given combination of parameters is successful |
| 68 | function testSuccess(algorithm, extractable, usages, resultType, testTag) { |
no test coverage detected