Package org.jboss.byteman.tests.auxiliary

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


    public void test()
    {
        run = 1;

        try {
            TestAllAuxiliary testAuxiliary;
            log("creating TestAllAuxiliary");
            testAuxiliary = new TestAllAuxiliary(this);
            log("created TestAllAuxiliary");
            log("calling TestAllAuxiliary.testMethod");
            testAuxiliary.testMethod(0);
            log("called TestAllAuxiliary.testMethod");
        } catch (Exception e) {
            log(e);
        }

        checkOutput(true);

        run = 2;

        try {
            TestAllAuxiliary testAuxiliary;
            log("creating TestAllAuxiliary");
            testAuxiliary = new TestAllAuxiliary(this);
            log("created TestAllAuxiliary");
            log("calling TestAllAuxiliary.testMethod2");
            testAuxiliary.testMethod2(0);
            log("called TestAllAuxiliary.testMethod2");
        } catch (Exception e) {
            log(e);
        }

        checkOutput(true);

        run = 3;

        try {
            TestAllAuxiliary testAuxiliary;
            log("creating TestAllAuxiliary");
            testAuxiliary = new TestAllAuxiliary(this);
            log("created TestAllAuxiliary");
            log("calling TestAllAuxiliary.testMethod3");
            testAuxiliary.testMethod3(1);
            log("called TestAllAuxiliary.testMethod3");
        } catch (Exception e) {
            log(e.getMessage());
        }

        checkOutput(true);

        run = 4;

        try {
            TestAllAuxiliary testAuxiliary;
            log("creating TestAllAuxiliary");
            testAuxiliary = new TestAllAuxiliary(this);
            log("created TestAllAuxiliary");
            log("calling TestAllAuxiliary.testMethod3");
            testAuxiliary.testMethod3(2);
            log("called TestAllAuxiliary.testMethod3");
        } catch (Exception e) {
            log(e.getMessage());
        }

        checkOutput(true);

        run = 5;

        try {
            TestAllAuxiliary testAuxiliary;
            log("creating TestAllAuxiliary");
            testAuxiliary = new TestAllAuxiliary(this);
            log("created TestAllAuxiliary");
            log("calling TestAllAuxiliary.testMethod3");
            testAuxiliary.testMethod3(3);
            log("called TestAllAuxiliary.testMethod3");
        } catch (Exception e) {
            log(e.getMessage());
        }

        checkOutput(true);

        run = 6;

        try {
            TestAllAuxiliary testAuxiliary;
            log("creating TestAllAuxiliary");
            testAuxiliary = new TestAllAuxiliary(this);
            log("created TestAllAuxiliary");
            log("calling TestAllAuxiliary.testMethod3");
            testAuxiliary.testMethod3(4);
            log("called TestAllAuxiliary.testMethod3");
        } catch (Exception e) {
            log(e.getMessage());
        }
View Full Code Here


    public void test()
    {
        run = 1;

        try {
            TestAllAuxiliary testAuxiliary;
            log("creating TestAllAuxiliary");
            testAuxiliary = new TestAllAuxiliary(this);
            log("created TestAllAuxiliary");
            log("calling TestAllAuxiliary.testMethod");
            testAuxiliary.testMethod(0);
            log("called TestAllAuxiliary.testMethod");
        } catch (Exception e) {
            log(e);
        }

        checkOutput(true);

        run = 2;

        try {
            TestAllAuxiliary testAuxiliary;
            log("creating TestAllAuxiliary");
            testAuxiliary = new TestAllAuxiliary(this);
            log("created TestAllAuxiliary");
            log("calling TestAllAuxiliary.testMethod2");
            testAuxiliary.testMethod2(0);
            log("called TestAllAuxiliary.testMethod2");
        } catch (Exception e) {
            log(e);
        }

        checkOutput(true);

        run = 3;

        try {
            TestAllAuxiliary testAuxiliary;
            log("creating TestAllAuxiliary");
            testAuxiliary = new TestAllAuxiliary(this);
            log("created TestAllAuxiliary");
            log("calling TestAllAuxiliary.testMethod3");
            testAuxiliary.testMethod3(1);
            log("called TestAllAuxiliary.testMethod3");
        } catch (Exception e) {
            log(e.getMessage());
        }

        checkOutput(true);

        run = 4;

        try {
            TestAllAuxiliary testAuxiliary;
            log("creating TestAllAuxiliary");
            testAuxiliary = new TestAllAuxiliary(this);
            log("created TestAllAuxiliary");
            log("calling TestAllAuxiliary.testMethod3");
            testAuxiliary.testMethod3(2);
            log("called TestAllAuxiliary.testMethod3");
        } catch (Exception e) {
            log(e.getMessage());
        }

        checkOutput(true);

        run = 5;

        try {
            TestAllAuxiliary testAuxiliary;
            log("creating TestAllAuxiliary");
            testAuxiliary = new TestAllAuxiliary(this);
            log("created TestAllAuxiliary");
            log("calling TestAllAuxiliary.testMethod3");
            testAuxiliary.testMethod3(3);
            log("called TestAllAuxiliary.testMethod3");
        } catch (Exception e) {
            log(e.getMessage());
        }

        checkOutput(true);

        run = 6;

        try {
            TestAllAuxiliary testAuxiliary;
            log("creating TestAllAuxiliary");
            testAuxiliary = new TestAllAuxiliary(this);
            log("created TestAllAuxiliary");
            log("calling TestAllAuxiliary.testMethod3");
            testAuxiliary.testMethod3(4);
            log("called TestAllAuxiliary.testMethod3");
        } catch (Exception e) {
            log(e.getMessage());
        }
View Full Code Here

TOP

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

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.