Files
alfresco-community-repo/source/test-java/org/alfresco/web/AllUnitTestsSuite.java
Erik Winlof 34d911b025 Merged HEAD-BUG-FIX (5.0/Cloud) to HEAD (5.0/Cloud)
78414: Merged EOL (5.0/Cloud) to HEAD-BUG-FIX (5.0/Cloud)
      75784: ACE-2149: EOL AVM / WCM
       - Get 'web-client' project to compile
       - For further work, all bits that required commenting or changing were tagged with '// WCM'
         i.e. a search for 'WCM' will highlight all the code changes made
       - TODO: Visit jsp files and other config to do a proper job


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@82546 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
2014-09-03 12:08:20 +00:00

32 lines
873 B
Java

package org.alfresco.web;
import junit.framework.JUnit4TestAdapter;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.alfresco.web.app.ResourceBundleWrapperTest;
import org.alfresco.web.app.servlet.AuthenticationFilterTest;
import org.alfresco.web.config.WebClientConfigTest;
/**
* All Alfresco web client project UNIT test classes should be added to this test suite.
*/
public class AllUnitTestsSuite extends TestSuite
{
/**
* Creates the test suite
*
* @return the test suite
*/
public static Test suite()
{
TestSuite suite = new TestSuite();
suite.addTest(new JUnit4TestAdapter(AuthenticationFilterTest.class));
suite.addTestSuite(ResourceBundleWrapperTest.class);
suite.addTestSuite(WebClientConfigTest.class);
return suite;
}
}