Author: ygrego Date: 2015-04-21 15:37:53 +0000 (Tue, 21 Apr 2015) New Revision: 1240 Url: http://forge.nuiton.org/projects/sandbox/repository/revisions/1240 Log: Two properties "timerManager", "timeout" have been introduced in this class because there are used in different test objects (eg. VideoBroadcastTest, SearchManagerTest). Modified: oipf/js/test/TestCase.js Modified: oipf/js/test/TestCase.js =================================================================== --- oipf/js/test/TestCase.js 2015-04-21 12:39:19 UTC (rev 1239) +++ oipf/js/test/TestCase.js 2015-04-21 15:37:53 UTC (rev 1240) @@ -6,6 +6,8 @@ var TestCase = Class.extend({ init: function() { + this.timerManager = new TimerManager(); + this.timeout = this.timerManager.createTimer.bind(this.timerManager); }, assertNotUndefined : function(elmt) {