Package org.auraframework.test

Examples of org.auraframework.test.UnitTestCase


    public static Object getPerformanceMetrics(@Key("metricsType") String metricsType,
            @Key("testName") String testName) throws Exception {

        logger.info(String.format("Loading '%s' Performance metrics for test: %s", metricsType, testName));

        UnitTestCase test = (UnitTestCase) TestSetRunnerState.getInstance().getInventory().get(testName);
        String goldFileName = test.getGoldFileName();

        PerfResultsUtil.PerformanceMetrics type = PerfResultsUtil.PerformanceMetrics
                .getPerformanceMetricsFromType(metricsType);
        File file = type.getFile(goldFileName);
View Full Code Here

TOP

Related Classes of org.auraframework.test.UnitTestCase

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.