michael@0: gczeal(7,1); michael@0: function TestCase(n) { michael@0: this.name = ''; michael@0: this.description = ''; michael@0: this.expect = ''; michael@0: this.actual = ''; michael@0: this.reason = ''; michael@0: this.passed = ''; michael@0: } michael@0: function test() new TestCase; michael@0: test(); michael@0: Object.defineProperty(Object.prototype, "name", {}); michael@0: test();