Package org.jboss.byteman.tests.auxiliary

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


        super(TestTriggerClassMethodBinding.class.getCanonicalName());
    }

    public void test()
    {
        C1 c1 = new C1();
        C2 c2 = new C2();

        try {
            log("calling C1.testMethod(Test)");
            c1.testMethod(this);
            log("called C1.testMethod(Test)");
            log("calling C2.testMethod(Test)");
            c2.testMethod(this);
            log("called C2.testMethod(Test)");
        } catch (Exception e) {
View Full Code Here


    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);
        }
View Full Code Here

TOP

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

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.