diff --git a/source/test-java/org/alfresco/Repository01TestSuite.java b/source/test-java/org/alfresco/Repository01TestSuite.java index faddd4f6ef..10e800c9f6 100644 --- a/source/test-java/org/alfresco/Repository01TestSuite.java +++ b/source/test-java/org/alfresco/Repository01TestSuite.java @@ -185,7 +185,6 @@ public class Repository01TestSuite extends TestSuite suite.addTestSuite(org.alfresco.repo.importer.FileImporterTest.class); suite.addTestSuite(org.alfresco.repo.importer.ImporterComponentTest.class); suite.addTest(new JUnit4TestAdapter(org.alfresco.repo.invitation.InvitationCleanupTest.class)); - suite.addTest(new JUnit4TestAdapter(org.alfresco.repo.invitation.ActivitiInvitationServiceImplTests.class)); } static void tests29(TestSuite suite) // tests="12" time="93.965" @@ -455,4 +454,9 @@ public class Repository01TestSuite extends TestSuite { suite.addTest(org.alfresco.repo.virtual.VirtualizationIntegrationTestSuite.suite()); } + + static void tests71(TestSuite suite) + { + suite.addTest(new JUnit4TestAdapter(org.alfresco.repo.invitation.ActivitiInvitationServiceImplTests.class)); + } } diff --git a/source/test-java/org/alfresco/Repository71TestSuite.java b/source/test-java/org/alfresco/Repository71TestSuite.java new file mode 100644 index 0000000000..51db039c56 --- /dev/null +++ b/source/test-java/org/alfresco/Repository71TestSuite.java @@ -0,0 +1,45 @@ +/* + * #%L + * Alfresco Repository + * %% + * Copyright (C) 2005 - 2016 Alfresco Software Limited + * %% + * This file is part of the Alfresco software. + * If the software was purchased under a paid Alfresco license, the terms of + * the paid license agreement will prevail. Otherwise, the software is + * provided under the following open source license terms: + * + * Alfresco is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * Alfresco is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with Alfresco. If not, see . + * #L% + */ + +package org.alfresco; + +import junit.framework.Test; +import junit.framework.TestSuite; + +/** + * + * @author cpopa + * + */ +public class Repository71TestSuite extends TestSuite +{ + public static Test suite() + { + TestSuite suite = new TestSuite(); + Repository01TestSuite.tests71(suite); + return suite; + } +}