[jboss-cvs] JBoss Messaging SVN: r6876 - trunk/tests/src/org/jboss/messaging/tests/unit/core/postoffice/impl.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue May 19 08:12:07 EDT 2009


Author: jmesnil
Date: 2009-05-19 08:12:07 -0400 (Tue, 19 May 2009)
New Revision: 6876

Modified:
   trunk/tests/src/org/jboss/messaging/tests/unit/core/postoffice/impl/BindingImplTest.java
Log:
fixed unit-tests compilation errors

* FakeMessage must implement new Message methods (since r6869)

Modified: trunk/tests/src/org/jboss/messaging/tests/unit/core/postoffice/impl/BindingImplTest.java
===================================================================
--- trunk/tests/src/org/jboss/messaging/tests/unit/core/postoffice/impl/BindingImplTest.java	2009-05-19 11:25:43 UTC (rev 6875)
+++ trunk/tests/src/org/jboss/messaging/tests/unit/core/postoffice/impl/BindingImplTest.java	2009-05-19 12:12:07 UTC (rev 6876)
@@ -769,6 +769,114 @@
          return 0;
       }
 
+      /* (non-Javadoc)
+       * @see org.jboss.messaging.core.message.Message#containsProperty(java.lang.String)
+       */
+      public boolean containsProperty(String key)
+      {
+         // TODO Auto-generated method stub
+         return false;
+      }
+
+      /* (non-Javadoc)
+       * @see org.jboss.messaging.core.message.Message#getProperty(java.lang.String)
+       */
+      public Object getProperty(String key)
+      {
+         // TODO Auto-generated method stub
+         return null;
+      }
+
+      /* (non-Javadoc)
+       * @see org.jboss.messaging.core.message.Message#putBooleanProperty(java.lang.String, boolean)
+       */
+      public void putBooleanProperty(String key, boolean value)
+      {
+         // TODO Auto-generated method stub
+         
+      }
+
+      /* (non-Javadoc)
+       * @see org.jboss.messaging.core.message.Message#putByteProperty(java.lang.String, byte)
+       */
+      public void putByteProperty(String key, byte value)
+      {
+         // TODO Auto-generated method stub
+         
+      }
+
+      /* (non-Javadoc)
+       * @see org.jboss.messaging.core.message.Message#putBytesProperty(java.lang.String, byte[])
+       */
+      public void putBytesProperty(String key, byte[] value)
+      {
+         // TODO Auto-generated method stub
+         
+      }
+
+      /* (non-Javadoc)
+       * @see org.jboss.messaging.core.message.Message#putDoubleProperty(java.lang.String, double)
+       */
+      public void putDoubleProperty(String key, double value)
+      {
+         // TODO Auto-generated method stub
+         
+      }
+
+      /* (non-Javadoc)
+       * @see org.jboss.messaging.core.message.Message#putFloatProperty(java.lang.String, float)
+       */
+      public void putFloatProperty(String key, float value)
+      {
+         // TODO Auto-generated method stub
+         
+      }
+
+      /* (non-Javadoc)
+       * @see org.jboss.messaging.core.message.Message#putIntProperty(java.lang.String, int)
+       */
+      public void putIntProperty(String key, int value)
+      {
+         // TODO Auto-generated method stub
+         
+      }
+
+      /* (non-Javadoc)
+       * @see org.jboss.messaging.core.message.Message#putLongProperty(java.lang.String, long)
+       */
+      public void putLongProperty(String key, long value)
+      {
+         // TODO Auto-generated method stub
+         
+      }
+
+      /* (non-Javadoc)
+       * @see org.jboss.messaging.core.message.Message#putShortProperty(java.lang.String, short)
+       */
+      public void putShortProperty(String key, short value)
+      {
+         // TODO Auto-generated method stub
+         
+      }
+
+      /* (non-Javadoc)
+       * @see org.jboss.messaging.core.message.Message#putStringProperty(java.lang.String, java.lang.String)
+       */
+      public void putStringProperty(String key, String value)
+      {
+         // TODO Auto-generated method stub
+         
+      }
+
+      /* (non-Javadoc)
+       * @see org.jboss.messaging.core.message.Message#removeProperty(java.lang.String)
+       */
+      public Object removeProperty(String key)
+      {
+         // TODO Auto-generated method stub
+         return null;
+      }
+
    }
 
    class FakeFilter implements Filter




More information about the jboss-cvs-commits mailing list