mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-14 17:58:59 +00:00
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
41 lines
849 B
Java
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();
|
|
}
|
|
}
|