An attempt to fix Bamboo build failure, by reordering the test. As it seems some tests are messing up the repo.

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@110081 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Jamal Kaabi-Mofrad
2015-08-14 01:18:24 +00:00
parent 539308554a
commit 53be190854

View File

@@ -53,6 +53,7 @@ public class RemoteApi01TestSuite extends TestSuite
{ {
suite.addTestSuite(org.alfresco.repo.management.subsystems.test.SubsystemsTest.class); suite.addTestSuite(org.alfresco.repo.management.subsystems.test.SubsystemsTest.class);
suite.addTestSuite(org.alfresco.repo.remoteticket.RemoteAlfrescoTicketServiceTest.class); suite.addTestSuite(org.alfresco.repo.remoteticket.RemoteAlfrescoTicketServiceTest.class);
suite.addTest(new JUnit4TestAdapter(org.alfresco.rest.api.tests.TestCustomModelExport.class));
} }
static void tests2(TestSuite suite) // static void tests2(TestSuite suite) //
@@ -96,6 +97,9 @@ public class RemoteApi01TestSuite extends TestSuite
static void tests8(TestSuite suite) // static void tests8(TestSuite suite) //
{ {
suite.addTest(org.alfresco.rest.api.tests.CMMApiTestSuite.suite()); suite.addTest(new JUnit4TestAdapter(org.alfresco.rest.api.tests.TestCustomModel.class));
suite.addTest(new JUnit4TestAdapter(org.alfresco.rest.api.tests.TestCustomTypeAspect.class));
suite.addTest(new JUnit4TestAdapter(org.alfresco.rest.api.tests.TestCustomProperty.class));
suite.addTest(new JUnit4TestAdapter(org.alfresco.rest.api.tests.TestCustomConstraint.class));
} }
} }