Source code: org/activemq/transport/openwire/io/BrokerInfoMarshallerTest.java
1 /**
2 * Test case for the marshalling code for Open Wire Format for BrokerInfo
3 *
4 *
5 * NOTE!: This file is autogenerated - do not modify!
6 * if you need to make a change, please see the Groovy scripts in the
7 * activemq-openwire module
8 */
9
10 package org.activemq.transport.openwire.io;
11
12 import org.activemq.io.impl.AbstractPacketMarshaller;
13 import org.activemq.message.*;
14 import org.activemq.message.Packet;
15 import org.activemq.transport.openwire.PacketMarshallerTestSupport;
16
17 /**
18 * AUTOGENERATED test case for OpenWire command BrokerInfo
19
20 * @version $Revision: 1.1 $
21 */
22 public class BrokerInfoMarshallerTest extends PacketMarshallerTestSupport {
23
24 /**
25 * @return a newly created marshaller
26 */
27 protected AbstractPacketMarshaller createMarshaller() {
28 return new BrokerInfoMarshaller();
29 }
30
31
32 /**
33 * configures the packet with some test data
34 */
35 protected void populatePacket(Packet packet) throws Exception {
36 super.populatePacket(packet);
37 BrokerInfo info = (BrokerInfo) packet;
38
39 info.setBrokerName("TestString83");
40 info.setClusterName("TestString84");
41 info.setProperties(null);
42 info.setStartTime((long) 86);
43 info.setRemote(true);
44 }
45
46 /**
47 * Asserts that the read packet has the correct values
48 */
49 protected void assertPacketValid(Packet packet) throws Exception {
50 super.assertPacketValid(packet);
51 BrokerInfo info = (BrokerInfo) packet;
52
53 assertEquals("property BrokerName", "TestString83", info.getBrokerName());
54 assertEquals("property ClusterName", "TestString84", info.getClusterName());
55 assertEquals("property Properties", null, info.getProperties());
56 assertEquals("property StartTime", (long) 86, info.getStartTime());
57 assertEquals("property Remote", true, info.isRemote());
58 }
59 }