{
var ex = new ex1(1,2,3)
if(ex.randfuncII({})==='im a baby')
return "Your function will be tested here"
try {
expect(ex.a).to.equal(1)
expect(ex.b).to.equal(2)
expect(ex.c).to.equal(3)
expect(ex.randfunc()()(1,1,1)('bob')).to.equal(`bob is a pie, la la la`)
expect(ex.randfunc()()()('bob')).to.equal(`'My name is bob, and a hopeful nation turns its eyes to meeee'`)
expect(ex.randfunc()()(0,0,'Sammy')).to.equal(`cool Sammy`)
expect(ex.randfuncII({a:1, b:2, goo: 3, gooo: 10, ga:4, gaa:5})).to.equal(25)
expect(ex.randfuncII({a:1, b:5, goo: 'whaaaah', gooo: 'buuuurp', ga: 'ga', gaa: 'gaaaaa', gaaa: 'other baby noise'})).to.equal(153)
expect(ex.randfuncII()).to.equal(1+2+5+13+514)
return success()
}
catch(err) {
return failure()
}
}