You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by ke...@apache.org on 2007/04/30 15:16:29 UTC

svn commit: r533742 - /incubator/tuscany/java/cts/sdo2.1/src/main/java/test/sdo21/paramatizedTests/general/ActiveUpdatingTest.java

Author: kelvingoodson
Date: Mon Apr 30 06:16:28 2007
New Revision: 533742

URL: http://svn.apache.org/viewvc?view=rev&rev=533742
Log:
Minor slip in text in last commit

Modified:
    incubator/tuscany/java/cts/sdo2.1/src/main/java/test/sdo21/paramatizedTests/general/ActiveUpdatingTest.java

Modified: incubator/tuscany/java/cts/sdo2.1/src/main/java/test/sdo21/paramatizedTests/general/ActiveUpdatingTest.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/cts/sdo2.1/src/main/java/test/sdo21/paramatizedTests/general/ActiveUpdatingTest.java?view=diff&rev=533742&r1=533741&r2=533742
==============================================================================
--- incubator/tuscany/java/cts/sdo2.1/src/main/java/test/sdo21/paramatizedTests/general/ActiveUpdatingTest.java (original)
+++ incubator/tuscany/java/cts/sdo2.1/src/main/java/test/sdo21/paramatizedTests/general/ActiveUpdatingTest.java Mon Apr 30 06:16:28 2007
@@ -89,9 +89,9 @@
 
         assertEquals("Update to returned List did not affect DataObject correctly.  Size of children is not 2",
             2, root.getList("children").size());
-        assertEquals("Update to returned List did not affect DataObject correctly.  child1 is not equal to root",
+        assertEquals("Update to returned List did not affect DataObject correctly.  child1's container is not equal to root",
             root, child1.getContainer());
-        assertEquals("Update to returned List did not affect DataObject correctly.  child2 is not equal to root",
+        assertEquals("Update to returned List did not affect DataObject correctly.  child2's container is not equal to root",
             root, child2.getContainer());
 
         /**
@@ -109,8 +109,8 @@
 
         // TODO switch the arguments in the rest of this file so that the expected value is the first comparison argument
         assertEquals("Deleting a DataObject should not affect a List unassociated with the DataObject.",
-                     addList.size(),
-                     1);
+            1,         
+            addList.size());
 
         /**
          * Call DataObject.setList() and verify that the previously returned
@@ -122,8 +122,8 @@
         root.setList("children", addList);
 
         assertEquals("The List retruned by DataObject.getList() was not affected by a subsequent DataObject.setList().",
-                     returnedList.size(),
-                     3);
+                     3,
+                     returnedList.size());
         /**
          * Call List.remove() on the returned List and verify that the
          * DataObject is affected.



---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-commits-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-commits-help@ws.apache.org