[jboss-cvs] JBossCache/tests/functional/org/jboss/cache/notifications ...

Manik Surtani manik at jboss.org
Mon Jul 30 03:45:52 EDT 2007


  User: msurtani
  Date: 07/07/30 03:45:52

  Modified:    tests/functional/org/jboss/cache/notifications 
                        ConcurrentNotificationTest.java
  Log:
  added null test
  
  Revision  Changes    Path
  1.2       +6 -0      JBossCache/tests/functional/org/jboss/cache/notifications/ConcurrentNotificationTest.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ConcurrentNotificationTest.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/tests/functional/org/jboss/cache/notifications/ConcurrentNotificationTest.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- ConcurrentNotificationTest.java	29 Jul 2007 15:24:08 -0000	1.1
  +++ ConcurrentNotificationTest.java	30 Jul 2007 07:45:52 -0000	1.2
  @@ -38,6 +38,12 @@
         cache.stop();
      }
   
  +   public void testNulls()
  +   {
  +      cache.put(fqn, "key", null);
  +      cache.put(fqn, null, "value");
  +   }
  +
      public void testThreads() throws Exception
      {
         Thread workers[] = new Thread[20];
  
  
  



More information about the jboss-cvs-commits mailing list