Package org.auraframework.test.TestExecutor

Examples of org.auraframework.test.TestExecutor.TestRun


            if (RUN_PERF_TESTS) {
                if (!PerfUtil.hasPerfTestAnnotation((TestCase) test)) {
                    return;
                }
            }
            TestRun callable = new TestRun(test, result);
            if (TestExecutor.isThreadHostile(test)) {
                hostileQueue.add(callable);
            } else {
                queue.add(callable);
            }
View Full Code Here


            if (RUN_PERF_TESTS) {
                if (!PerfUtil.hasPerfTestAnnotation((TestCase) test)) {
                    return;
                }
            }
            TestRun callable = new TestRun(test, result);
            if (TestExecutor.isThreadHostile(test)) {
                hostileQueue.add(callable);
            } else {
                queue.add(callable);
            }
View Full Code Here

TOP

Related Classes of org.auraframework.test.TestExecutor.TestRun

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.