public void setUp() throws Exception
{
super.setUp();
svr = MBeanServerFactory.createMBeanServer();
jythonRunner = new JythonRunner();
jythonName = ObjectName.getInstance("tools", "type", "JythonRunner");
svr.registerMBean(jythonRunner, jythonName);
_int = new Int();
intName = ObjectName.getInstance("test", "type", "Int");
svr.registerMBean(_int, intName);