Author: ygrego Date: 2015-02-19 14:58:57 +0000 (Thu, 19 Feb 2015) New Revision: 833 Url: http://forge.nuiton.org/projects/sandbox/repository/revisions/833 Log: Addition of delimeter in console display of running tests. Modified: oipf/js/test/SearchManagerTest.js Modified: oipf/js/test/SearchManagerTest.js =================================================================== --- oipf/js/test/SearchManagerTest.js 2015-02-19 14:55:01 UTC (rev 832) +++ oipf/js/test/SearchManagerTest.js 2015-02-19 14:58:57 UTC (rev 833) @@ -10,6 +10,8 @@ }, testInstanceCreation: function (resolve, reject) { var state = "Pending"; + console.log("***************************************************************************************************************************"); + console.log("[TEST-RUNNING][Info] Id: smTestInstanceCreation, Label: Object creation, State: " + state); this.searchManagerTest = oipfObjectFactory.createSearchManagerObject(); @@ -22,10 +24,14 @@ console.log("[TEST-RUNNING][Info] Id: smTestInstanceCreation, Label: Object creation, State: " + state); reject(new Error(state)); } + console.log("***************************************************************************************************************************"); + }, testGetCurrentProgram: function (resolve, reject) { var searchManagerObject = oipfObjectFactory.createSearchManagerObject(); var stat = "Pending"; + console.log("***************************************************************************************************************************"); + console.log("[TEST-RUNNING][Info] " + "Id: smTestGetCurrentProgram, Label: Obtain current program according to oipf norm, State: " + stat); var self = this; @@ -63,6 +69,8 @@ console.log("Unknow state"); } + console.log("***************************************************************************************************************************"); + }; var channelConfig = oipfObjectFactory.createChannelConfig();