1 16 17 package org.springframework.jmx.export.assembler; 18 19 20 21 22 25 public class ReflectiveAssemblerTests extends AbstractJmxAssemblerTests { 26 27 protected static final String OBJECT_NAME = "bean:name=testBean1"; 28 29 protected String getObjectName() { 30 return OBJECT_NAME; 31 } 32 33 protected int getExpectedOperationCount() { 34 return 11; 35 } 36 37 protected int getExpectedAttributeCount() { 38 return 4; 39 } 40 41 protected MBeanInfoAssembler getAssembler() { 42 return new SimpleReflectiveMBeanInfoAssembler(); 43 } 44 45 protected String getApplicationContextPath() { 46 return "org/springframework/jmx/export/assembler/reflectiveAssembler.xml"; 47 } 48 49 } 50 | Popular Tags |