it('decorates if test is truthy', () => {
        assert(spy1.callCount === 1);
        assert(spy1.getCall(0).args[0] === TargetClass.prototype);
        assert(spy1.getCall(0).args[1] === 'method1');
        assert(spy1.getCall(0).args[2] === 0);