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

@@ -23,22 +23,21 @@
* along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
* #L%
*/
package org.alfresco;
import junit.framework.Test;
import junit.framework.TestSuite;
/**
* See {@link Repository01TestSuite}
*
* @author Alan Davis
*/
public class Repository33TestSuite extends TestSuite
{
public static Test suite()
{
TestSuite suite = new TestSuite();
Repository01TestSuite.tests33(suite);
return suite;
}
}
package org.alfresco;
import junit.framework.Test;
import junit.framework.TestSuite;
/**
*
* @author Alan Davis
*/
public class Repository33TestSuite extends TestSuite
{
public static Test suite()
{
TestSuite suite = new TestSuite();
AllRepositoryTestsCatalogue.ibatisTestContext_applicationContext_globalIntegrationTestContext_33(suite);
return suite;
}
}