Package org.jboss.byteman.tests.auxiliary

Examples of org.jboss.byteman.tests.auxiliary.I3


    public void test()
    {
        run = 1;

        I3 c1 = new C1();
        try {
            log("calling C1.testMethod()");
            c1.testMethod(this);
            log("called C1.testMethod()");
        } catch (Exception e) {
            log(e);
        }

        checkOutput(true);

        run =  2;

        I3 c2 = new C2();
        try {
            log("calling C2.testMethod()");
            c2.testMethod(this);
            log("called C2.testMethod()");
        } catch (Exception e) {
            log(e);
        }
View Full Code Here

TOP

Related Classes of org.jboss.byteman.tests.auxiliary.I3

Copyright © 2018 www.massapicom. 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.