From: <asa...@us...> - 2015-04-22 10:38:37
|
Revision: 10377 http://sourceforge.net/p/htmlunit/code/10377 Author: asashour Date: 2015-04-22 09:34:49 +0000 (Wed, 22 Apr 2015) Log Message: ----------- Fixing the test cases Modified Paths: -------------- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfATest.java trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfHTest.java trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfITest.java Modified: trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfATest.java =================================================================== --- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfATest.java 2015-04-22 09:06:21 UTC (rev 10376) +++ trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfATest.java 2015-04-22 09:34:49 UTC (rev 10377) @@ -5236,24 +5236,4 @@ test("Event", "RTCPeerConnectionIceEvent"); } - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - FF31 = "true") - public void _RTCDataChannelEvent_RTCDataChannelEvent() throws Exception { - test("RTCDataChannelEvent", "RTCDataChannelEvent"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - FF31 = "true") - public void _RTCPeerConnectionIceEvent_RTCPeerConnectionIceEvent() throws Exception { - test("RTCPeerConnectionIceEvent", "RTCPeerConnectionIceEvent"); - } - } Modified: trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfHTest.java =================================================================== --- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfHTest.java 2015-04-22 09:06:21 UTC (rev 10376) +++ trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfHTest.java 2015-04-22 09:34:49 UTC (rev 10377) @@ -1873,24 +1873,4 @@ test("HTMLPictureElement", "HTMLPictureElement"); } - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - CHROME = "true") - public void _RTCIceCandidate_RTCIceCandidate() throws Exception { - test("RTCIceCandidate", "RTCIceCandidate"); - } - - /** - * @throws Exception if the test fails - */ - @Test - @Alerts(DEFAULT = "false", - CHROME = "true") - public void _RTCSessionDescription_RTCSessionDescription() throws Exception { - test("RTCSessionDescription", "RTCSessionDescription"); - } - } Modified: trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfITest.java =================================================================== --- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfITest.java 2015-04-22 09:06:21 UTC (rev 10376) +++ trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/huge/HostParentOfITest.java 2015-04-22 09:34:49 UTC (rev 10377) @@ -2490,4 +2490,55 @@ public void _mozRTCSessionDescription_mozRTCSessionDescription() throws Exception { test("mozRTCSessionDescription", "mozRTCSessionDescription"); } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "false", + CHROME = "true") + public void _RTCIceCandidate_RTCIceCandidate() throws Exception { + test("RTCIceCandidate", "RTCIceCandidate"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "false", + CHROME = "true") + public void _RTCSessionDescription_RTCSessionDescription() throws Exception { + test("RTCSessionDescription", "RTCSessionDescription"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "false", + FF31 = "true") + public void _RTCDataChannelEvent_RTCDataChannelEvent() throws Exception { + test("RTCDataChannelEvent", "RTCDataChannelEvent"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "false", + FF31 = "true") + public void _RTCPeerConnectionIceEvent_RTCPeerConnectionIceEvent() throws Exception { + test("RTCPeerConnectionIceEvent", "RTCPeerConnectionIceEvent"); + } + + /** + * @throws Exception if the test fails + */ + @Test + @Alerts(DEFAULT = "false", + FF31 = "true") + public void _mozRTCIceCandidate_mozRTCIceCandidate() throws Exception { + test("mozRTCIceCandidate", "mozRTCIceCandidate"); + } + } |