REPO-1995: Merge/split the tests in test suites based on application context type - part 1

This commit is contained in:
Andrei Rebegea
2017-08-01 09:10:00 +03:00
parent 4b151b2439
commit af43f136aa
69 changed files with 1514 additions and 794 deletions

View File

@@ -25,11 +25,10 @@
*/
package org.alfresco;
import junit.framework.Test;
import junit.framework.Test;
import junit.framework.TestSuite;
/**
* See {@link Repository01TestSuite}
*
* @author Alan Davis
*/
@@ -38,7 +37,7 @@ public class Repository10TestSuite extends TestSuite
public static Test suite()
{
TestSuite suite = new TestSuite();
Repository01TestSuite.tests10(suite);
AllRepositoryTestsCatalogue.applicationContext_testServiceActionServiceContext_10(suite);
return suite;
}
}