Author: ygrego Date: 2015-03-31 12:43:59 +0000 (Tue, 31 Mar 2015) New Revision: 1002 Url: http://forge.nuiton.org/projects/sandbox/repository/revisions/1002 Log: The following test methods have been added: "testSetChannelInUnrealized", "testSetChannelInConnecting", "testSetChannelInConnectingWithNull", "testSetChannelInPresenting", "testSetChannelInPresentingWithNull", "testSetChannelInStopped", "testSetChannelInStoppedWithNull" in global test object ""testsObjects". Modified: oipf/js/test/Test.js Modified: oipf/js/test/Test.js =================================================================== --- oipf/js/test/Test.js 2015-03-31 12:18:46 UTC (rev 1001) +++ oipf/js/test/Test.js 2015-03-31 12:43:59 UTC (rev 1002) @@ -261,12 +261,32 @@ method: "testGetVolume" }, { + label: "Set a channel in unrealized state.", + method: "testSetChannelInUnrealized" + }, + { + label: "Set a channel in connecting state.", + method: "testSetChannelInConnecting" + }, + { + label: "Call method 'setChannel' with null in connecting state.", + method: "testSetChannelInConnectingWithNull" + }, + { label: "Set a channel in presenting state.", method: "testSetChannelInPresenting" }, { label: "Call method 'setChannel' with null in presenting state.", method: "testSetChannelInPresentingWithNull" + }, + { + label: "Set a channel in stopped state.", + method: "testSetChannelInStopped" + }, + { + label: "Call method 'setChannel' with null in stopped state.", + method: "testSetChannelInStoppedWithNull" } ]},{ name: "SearchManagerTest",