Author: dims Date: Sun Mar 2 19:03:10 2008 New Revision: 632935 URL: http://svn.apache.org/viewvc?rev=632935&view=rev Log: Temporarily comment out breaking test...Rich, can you please take a look?
Modified: webservices/axis2/trunk/java/modules/jaxws/test/org/apache/axis2/jaxws/handler/context/LogicalMessageContextTests.java Modified: webservices/axis2/trunk/java/modules/jaxws/test/org/apache/axis2/jaxws/handler/context/LogicalMessageContextTests.java URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/jaxws/test/org/apache/axis2/jaxws/handler/context/LogicalMessageContextTests.java?rev=632935&r1=632934&r2=632935&view=diff ============================================================================== --- webservices/axis2/trunk/java/modules/jaxws/test/org/apache/axis2/jaxws/handler/context/LogicalMessageContextTests.java (original) +++ webservices/axis2/trunk/java/modules/jaxws/test/org/apache/axis2/jaxws/handler/context/LogicalMessageContextTests.java Sun Mar 2 19:03:10 2008 @@ -191,27 +191,28 @@ assertTrue("The updated content returned was incorrect, no fault found", resultContent.indexOf("Fault") > 0); assertTrue("The updated content returned was incorrect, new content not found", resultContent2.indexOf(newFaultInput) > -1); } - - /** - * Test the JAXB based APIs on the LogicalMessage interface. - * @throws Exception - */ - public void testGetPayloadAsJAXB() throws Exception { - LogicalMessageContext lmc = createSampleContext(); - - LogicalMessage msg = lmc.getMessage(); - assertTrue("The returned LogicalMessage was null", msg != null); - - JAXBContext jbc = JAXBContext.newInstance("test"); - - Object obj = msg.getPayload(jbc); - assertTrue("The returned payload (Object) was null", obj != null); - assertTrue("The returned payload (Object) was of the wrong type: " + obj.getClass().getName(), obj.getClass().equals(EchoString.class)); - - EchoString echo = (EchoString) obj; - assertTrue("The EchoString object had null input", echo.getInput() != null); - assertTrue("The EchoString object had bad input: " + echo.getInput(), echo.getInput().equals(INPUT)); - } + +// FIXME: Temporarily comment out test because of build break. +// /** +// * Test the JAXB based APIs on the LogicalMessage interface. +// * @throws Exception +// */ +// public void testGetPayloadAsJAXB() throws Exception { +// LogicalMessageContext lmc = createSampleContext(); +// +// LogicalMessage msg = lmc.getMessage(); +// assertTrue("The returned LogicalMessage was null", msg != null); +// +// JAXBContext jbc = JAXBContext.newInstance("test"); +// +// Object obj = msg.getPayload(jbc); +// assertTrue("The returned payload (Object) was null", obj != null); +// assertTrue("The returned payload (Object) was of the wrong type: " + obj.getClass().getName(), obj.getClass().equals(EchoString.class)); +// +// EchoString echo = (EchoString) obj; +// assertTrue("The EchoString object had null input", echo.getInput() != null); +// assertTrue("The EchoString object had bad input: " + echo.getInput(), echo.getInput().equals(INPUT)); +// } public void testConvertMessageToFault() throws Exception { --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]