(prefix)
| 20 | |
| 21 | // Check if our return is equivalent to the result of the total function. |
| 22 | test(prefix) { |
| 23 | let {args, returns} = this.resolve(prefix); |
| 24 | return this.getReturnValue(args) === returns[0]; |
| 25 | } |
| 26 | |
| 27 | // Total functions always have a cardinality of 1 |
| 28 | getProposal(tripleIndex, proposed, prefix) { |
no test coverage detected