@Test
public void testSetAttribute() throws Exception {
DynamicMBean proxy = JMX.newMBeanProxy(platformMBeanServer, threadPoolDynamicWrapperON, DynamicMBean.class);
proxy.setAttribute(new Attribute(THREAD_COUNT, newThreadCount));
assertEquals(newThreadCount, proxy.getAttribute(THREAD_COUNT));
assertEquals(newThreadCount, threadPoolConfigBean.getThreadCount());
AttributeList attributeList = new AttributeList();
attributeList.add(new Attribute(THREAD_COUNT, threadCount));
boolean bool = true;
attributeList.add(new Attribute(TRIGGER_NEW_INSTANCE_CREATION, bool));
proxy.setAttributes(attributeList);
assertEquals(threadCount, threadPoolConfigBean.getThreadCount());
assertEquals(bool, threadPoolConfigBean.isTriggerNewInstanceCreation());
}
DynamicWritableWrapperTest.java 文件源码
java
阅读 20
收藏 0
点赞 0
评论 0
项目:hashsdn-controller
作者:
评论列表
文章目录