/**
* Test method for {@link uk.co.blackpepper.test.stats.data.jmx.JMXAttributeStatisticTest#setAttributeName(java.lang.String)}.
*/
@Test
public void testSetAttributeName() {
statistic.setConnection(new MockMBeanServerConnection() {
public Object getAttribute(
final ObjectName name,
final String attribute) {
assertEquals("Attribute name not set or passed correctly.", TEST_ATTRIBUTE_NAME, attribute);
return INT_VALUE;