1 16 17 package org.springframework.jmx.export.assembler; 18 19 22 public class InterfaceBasedMBeanInfoAssemblerTests extends AbstractJmxAssemblerTests { 23 24 protected static final String OBJECT_NAME = "bean:name=testBean4"; 25 26 protected String getObjectName() { 27 return OBJECT_NAME; 28 } 29 30 protected int getExpectedOperationCount() { 31 return 7; 32 } 33 34 protected int getExpectedAttributeCount() { 35 return 2; 36 } 37 38 protected MBeanInfoAssembler getAssembler() { 39 return new InterfaceBasedMBeanInfoAssembler(); 40 } 41 42 protected String getApplicationContextPath() { 43 return "org/springframework/jmx/export/assembler/interfaceAssembler.xml"; 44 } 45 46 } 47 | Popular Tags |