Package org.auraframework.test

Examples of org.auraframework.test.TestInventory


import org.auraframework.test.TestInventory.Type;
import org.auraframework.util.ServiceLocator;

public class AuraImplUnitTestSuite {
    public static TestSuite suite() throws Exception {
        TestInventory inventory = ServiceLocator.get().get(TestInventory.class, "auraImplTestInventory");
        TestSuite suite = inventory.getTestSuite(Type.UNIT);
        suite.setName("aura-impl unit tests");
        return suite;
    }
View Full Code Here


import org.auraframework.test.TestInventory.Type;
import org.auraframework.util.ServiceLocator;

public class AuraImplIntegrationTestSuite {
    public static TestSuite suite() throws Exception {
        TestInventory inventory = ServiceLocator.get().get(TestInventory.class, "auraImplTestInventory");
        TestSuite suite = inventory.getTestSuite(Type.INTEGRATION);
        suite.setName("aura-impl integrationtests");
        return suite;
    }
View Full Code Here

import org.auraframework.test.TestInventory.Type;
import org.auraframework.util.ServiceLocator;

public class AuraImplWebDriverTestSuite {
    public static TestSuite suite() throws Exception {
        TestInventory inventory = ServiceLocator.get().get(TestInventory.class, "auraImplTestInventory");
        TestSuite suite = inventory.getTestSuite(Type.WEB);
        suite.setName("aura-impl webdriver tests");
        return suite;
    }
View Full Code Here

TOP

Related Classes of org.auraframework.test.TestInventory

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.