Package org.activemq.message

Examples of org.activemq.message.ActiveMQMapMessage


  public void testShallowCopy()
  {
   
        try {
            ActiveMQMapMessage msg = new ActiveMQMapMessage();
            msg.setString("fred", "fred");
           
            ActiveMQMapMessage msg2;
           
            msg2 = (ActiveMQMapMessage)msg.shallowCopy();
            assertTrue(msg2.getTable() != null && msg2.getTable()==msg.getTable());
        }
        catch (JMSException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
            assertTrue(false);
View Full Code Here


       
  }

  public void testDeepCopy()
  {
    ActiveMQMapMessage msg = new ActiveMQMapMessage();
   
   
    try {
            ActiveMQMapMessage msg2 = (ActiveMQMapMessage)msg.deepCopy();
            assertTrue(msg2.getTable() != null && msg2.getTable()!=msg.getTable());
        }
        catch (JMSException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
            assertTrue(false);
View Full Code Here

        }
  }

  public void testSetTable()
  {
    ActiveMQMapMessage msg = new ActiveMQMapMessage();
   
    HashMap table = new HashMap();
    msg.setTable(table);
    try {
            assertTrue(msg.getTable()==table);
        }
        catch (JMSException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
            assertTrue(false);
View Full Code Here

  }


  public void testGetBoolean()
  {
    ActiveMQMapMessage msg = new ActiveMQMapMessage();
    try {
      msg.setBoolean(name,true);
      msg.setReadOnly(true);
      assertTrue(msg.getBoolean(name));
      msg.clearBody();
      msg.setString(name,"true");
      assertTrue(msg.getBoolean(name));
    }catch(JMSException jmsEx){
      jmsEx.printStackTrace();
      assertTrue(false);
    }
  }
View Full Code Here

  }

  public void testGetByte()
  {

    ActiveMQMapMessage msg = new ActiveMQMapMessage();
    try {
      msg.setByte(this.name,(byte)1);
      msg.setReadOnly(true);
      assertTrue(msg.getByte(this.name)==(byte)1);
    }catch(JMSException jmsEx){
      jmsEx.printStackTrace();
      assertTrue(false);
    }
  }
View Full Code Here

    }
  }

  public void testGetShort()
  {
    ActiveMQMapMessage msg = new ActiveMQMapMessage();
    try {
      msg.setByte(this.name,(byte)1);
      msg.setReadOnly(true);
      assertTrue(msg.getByte(this.name)==(byte)1);
    }catch(JMSException jmsEx){
      jmsEx.printStackTrace();
      assertTrue(false);
    }
  }
View Full Code Here

TOP

Related Classes of org.activemq.message.ActiveMQMapMessage

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.