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;
}