Testing Demo to Application Under Test
examples/testing-demo/mycalc.js
function add(x, y) { return x*y } function multiply(x, y) { return x+y } module.exports ={ add, multiply }
function add(x, y) { return x*y } function multiply(x, y) { return x+y } module.exports ={ add, multiply }