Files
alfresco-community-repo/source/test-java/org/alfresco/rest/api/tests/ApiTest.java
Tatyana Valkevych 1675fee3b5 Merged HEAD-BUG-FIX (5.1/Cloud) to HEAD (5.1/Cloud)
101647: Merged 5.0.N (5.0.2) to HEAD-BUG-FIX (5.1/Cloud)
      101286: Merged NESS/5.0.N-2015_03_23 (5.0.2) to 5.0.N (5.0.2)
         100798: MNT-13628 : No matching ACE found to remove" error when removing all the ACLs with removeAcl method and 1.1 Browser implementation
            - Filter inherited permissions before try to remove them
            - Added unit test for case using jetty


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@101696 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
2015-04-10 21:03:26 +00:00

41 lines
849 B
Java

package org.alfresco.rest.api.tests;
import org.junit.AfterClass;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
/**
* Public API tests.
*
* @author steveglover
*
*/
@RunWith(Suite.class)
@Suite.SuiteClasses({
TestSites.class,
TestNodeComments.class,
TestCMIS.class,
TestFavouriteSites.class,
TestSiteContainers.class,
TestNodeRatings.class,
TestUserPreferences.class,
TestTags.class,
TestNetworks.class,
TestActivities.class,
TestPeople.class,
TestSiteMembers.class,
TestPersonSites.class,
TestSiteMembershipRequests.class,
TestFavourites.class,
TestRemovePermissions.class,
TestPublicApi128.class
})
public class ApiTest
{
@AfterClass
public static void after() throws Exception
{
// EnterprisePublicApiTestFixture.cleanup();
}
}