- module.exports = ({ functions }) => {
-
- return functions.length === 3 &&
- functions[0].functionName === '' &&
- functions[0].isBlockCoverage === true &&
- functions[1].functionName === 'get' &&
- functions[1].isBlockCoverage === false &&
- functions[2].functionName === 'set' &&
- functions[2].isBlockCoverage === true
- }
|