@Test public void testToString() throws Exception { JmxAttribute attr = new JmxAttribute("test"); assertEquals(attr.toString(), new JmxAttribute("test").toString()); }
@Test public void testJmxAttributeHashCode() throws Exception { JmxAttribute a1 = new JmxAttribute("test_string"); assertEquals(a1.hashCode(), new String("test_string").hashCode()); }
@Test public void testJmxAttribute() throws Exception { JmxAttribute attr = new JmxAttribute("test"); assertEquals("test", attr.getAttributeName()); }