Merge branch 'feature/REPO-1995_improve_test_split' of github.com:Alfresco/alfresco-repository into feature/REPO-1995_improve_test_split

This commit is contained in:
Alan Davis
2017-08-07 17:22:16 +01:00
3 changed files with 4 additions and 3 deletions

View File

@@ -341,7 +341,9 @@ public class AllRepositoryTestsCatalogue
suite.addTest(new JUnit4TestAdapter(RepositoryStartupTest.class));
suite.addTest(new JUnit4TestAdapter(org.alfresco.util.CronTriggerBeanSystemTest.class));
suite.addTest(new JUnit4TestAdapter(org.alfresco.filesys.auth.cifs.CifsAuthenticatorPassthruTest.class));
// the following fails locally - on windows
suite.addTestSuite(org.alfresco.repo.content.transform.DifferrentMimeTypeTest.class);
suite.addTest(new JUnit4TestAdapter(org.alfresco.repo.attributes.PropTablesCleanupJobIntegrationTest.class));
suite.addTestSuite(org.alfresco.repo.tagging.UpdateTagScopesActionExecuterTest.class);
suite.addTest(new JUnit4TestAdapter(org.alfresco.service.ServiceRegistryTest.class));

View File

@@ -38,8 +38,8 @@ public class AppContextExtra02TestSuite extends TestSuite
AllRepositoryTestsCatalogue.applicationContext_virtualizationTestContext(suite);
AllRepositoryTestsCatalogue.applicationContext_testSubscriptionsContext(suite);
AllRepositoryTestsCatalogue.applicationContext_openCmisContext(suite);
// TODO Uncomment the following 2 lines after REPO-2790 is implemented
// AllRepositoryTestsCatalogue.applicationContext_cacheTestContext(suite);
AllRepositoryTestsCatalogue.applicationContext_cacheTestContext(suite);
// TODO Uncomment the following line after REPO-2790 is implemented
// AllRepositoryTestsCatalogue.applicationContext_mtAllContext(suite);
return suite;

View File

@@ -39,7 +39,6 @@ public class AppContextExtra03TestSuite extends TestSuite
{
TestSuite suite = new TestSuite();
AllRepositoryTestsCatalogue.applicationContext_cacheTestContext(suite);
AllRepositoryTestsCatalogue.applicationContext_mtAllContext(suite);
return suite;