|
From: Michael R. <mr...@us...> - 2004-08-09 10:06:19
|
Update of /cvsroot/openorb/OpenORB/src/test/org/openorb/orb/test/iiop In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31977/src/test/org/openorb/orb/test/iiop Modified Files: IIOPTest.java Log Message: Added the fragmented test case from Michael Macaluso Index: IIOPTest.java =================================================================== RCS file: /cvsroot/openorb/OpenORB/src/test/org/openorb/orb/test/iiop/IIOPTest.java,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- IIOPTest.java 22 Jul 2004 19:43:16 -0000 1.6 +++ IIOPTest.java 9 Aug 2004 10:06:09 -0000 1.7 @@ -12,12 +12,13 @@ import junit.framework.TestSuite; import junit.framework.Test; +import org.openorb.orb.test.iiop.bidir.BiDirTest; import org.openorb.orb.test.iiop.codec.CodecTest; +import org.openorb.orb.test.iiop.complex.ComplexTest; +import org.openorb.orb.test.iiop.fragmentedmessage.FragmentedMessageTest; import org.openorb.orb.test.iiop.primitive.PrimitiveTest; -import org.openorb.orb.test.iiop.value.ValuetypeTest; -import org.openorb.orb.test.iiop.bidir.BiDirTest; import org.openorb.orb.test.iiop.state.StateTest; -import org.openorb.orb.test.iiop.complex.ComplexTest; +import org.openorb.orb.test.iiop.value.ValuetypeTest; /** * Tests marshaling and unmarshaling of various iiop types. @@ -51,6 +52,8 @@ suite.addTestSuite( BiDirTest.class ); suite.addTestSuite( StateTest.class ); suite.addTestSuite( ComplexTest.class ); + // TODO: Fix the problem before removing the comment + //suite.addTestSuite( FragmentedMessageTest.class ); return suite; } |