[jbosscache-commits] JBoss Cache SVN: r5991 - core/branches/1.4.X/tests-50/functional/org/jboss/cache/aop.

jbosscache-commits at lists.jboss.org jbosscache-commits at lists.jboss.org
Mon Jun 16 20:16:30 EDT 2008


Author: jason.greene at jboss.com
Date: 2008-06-16 20:16:30 -0400 (Mon, 16 Jun 2008)
New Revision: 5991

Modified:
   core/branches/1.4.X/tests-50/functional/org/jboss/cache/aop/ReplicatedAnnotationAopTest.java
Log:
Remove invalid test

Modified: core/branches/1.4.X/tests-50/functional/org/jboss/cache/aop/ReplicatedAnnotationAopTest.java
===================================================================
--- core/branches/1.4.X/tests-50/functional/org/jboss/cache/aop/ReplicatedAnnotationAopTest.java	2008-06-16 16:58:35 UTC (rev 5990)
+++ core/branches/1.4.X/tests-50/functional/org/jboss/cache/aop/ReplicatedAnnotationAopTest.java	2008-06-17 00:16:30 UTC (rev 5991)
@@ -105,29 +105,6 @@
 
    }
 
-   public void testSeriazableAnnotationWithRelationship() throws Exception
-   {
-      log_.info("testSerializableAnnotationWithRelationship() ....");
-      Gadget ga = new Gadget();
-      ga.setName("Printer");
-      SpecialAddress addr = new SpecialAddress();
-      addr.setAddr("10.1.2.2");
-      ga.setAddr(addr);
-
-      cache_.putObject("/gadget1", ga);
-      Object obj = cache_.getObject("/gadget1");
-      assertEquals(ga, obj);
-
-      Gadget ga2 = new Gadget();
-      ga2.setName("Fax");
-      ga2.setAddr(addr);
-      cache_.putObject("/gadget2", ga2);
-
-      ga = (Gadget)cache1_.getObject("/gadget1");
-      ga2 = (Gadget)cache1_.getObject("/gadget2");
-      assertTrue("Sepcial address should be the same ", ga.getAddr() == ga2.getAddr());
-   }
-
    public static Test suite() throws Exception
    {
       return new TestSuite(ReplicatedAnnotationAopTest.class);




More information about the jbosscache-commits mailing list