Package com.jitlogic.zorka.common.test.support

Source Code of com.jitlogic.zorka.common.test.support.CommonFixture

package com.jitlogic.zorka.common.test.support;

import org.junit.Before;

import javax.management.MBeanServer;
import javax.management.MBeanServerBuilder;

public class CommonFixture {
    public MBeanServer testMbs;

    @Before
    public void setUpCommonFixture() throws Exception {
        testMbs = new MBeanServerBuilder().newMBeanServer("test", null, null);
    }

}
TOP

Related Classes of com.jitlogic.zorka.common.test.support.CommonFixture

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.