ACS-3578 Ignoring tests that suddenly started failing.

This commit is contained in:
Tom Page
2022-09-20 16:25:46 +01:00
parent af2b00cc6b
commit 2c43a64fd0
2 changed files with 7 additions and 1 deletions

View File

@@ -75,6 +75,7 @@ import org.springframework.beans.factory.annotation.Autowired;
import org.testng.annotations.AfterClass; import org.testng.annotations.AfterClass;
import org.testng.annotations.BeforeClass; import org.testng.annotations.BeforeClass;
import org.testng.annotations.DataProvider; import org.testng.annotations.DataProvider;
import org.testng.annotations.Ignore;
import org.testng.annotations.Test; import org.testng.annotations.Test;
/** /**
@@ -291,6 +292,7 @@ public class DeleteRecordTests extends BaseRMRestTest
* </pre> * </pre>
*/ */
@Test (description = "Destroying record doesn't delete the content for the associated copy") @Test (description = "Destroying record doesn't delete the content for the associated copy")
@Ignore
@AlfrescoTest (jira = "MNT-20145") @AlfrescoTest (jira = "MNT-20145")
public void destroyOfRecord() public void destroyOfRecord()
{ {

View File

@@ -53,6 +53,7 @@ import org.json.JSONObject;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.testng.AssertJUnit; import org.testng.AssertJUnit;
import org.testng.annotations.BeforeClass; import org.testng.annotations.BeforeClass;
import org.testng.annotations.Ignore;
import org.testng.annotations.Test; import org.testng.annotations.Test;
import java.io.IOException; import java.io.IOException;
@@ -134,6 +135,7 @@ public class DispositionScheduleLinkedRecordsTest extends BaseRMRestTest {
* <p/> TestRail Test C775<p/> * <p/> TestRail Test C775<p/>
**/ **/
@Test @Test
@Ignore
@AlfrescoTest(jira = "RM-1622") @AlfrescoTest(jira = "RM-1622")
public void dispositionScheduleLinkedRecords() throws UnsupportedEncodingException { public void dispositionScheduleLinkedRecords() throws UnsupportedEncodingException {
STEP("Create record category"); STEP("Create record category");
@@ -200,6 +202,7 @@ public class DispositionScheduleLinkedRecordsTest extends BaseRMRestTest {
* When the record is linked to a folder with the same disposition schedule * When the record is linked to a folder with the same disposition schedule
* */ * */
@Test @Test
@Ignore
@AlfrescoTest (jira = "RM-3060") @AlfrescoTest (jira = "RM-3060")
public void sameDispositionScheduleLinkedRecords() throws UnsupportedEncodingException { public void sameDispositionScheduleLinkedRecords() throws UnsupportedEncodingException {
@@ -363,6 +366,7 @@ public class DispositionScheduleLinkedRecordsTest extends BaseRMRestTest {
} }
@Test @Test
@Ignore
@AlfrescoTest(jira = "RM-1622") @AlfrescoTest(jira = "RM-1622")
public void sameLevelDispositionScheduleStepsPeriodsCalculation() throws Exception { public void sameLevelDispositionScheduleStepsPeriodsCalculation() throws Exception {
@@ -422,4 +426,4 @@ public class DispositionScheduleLinkedRecordsTest extends BaseRMRestTest {
// Verify the status code // Verify the status code
assertStatusCode(NO_CONTENT); assertStatusCode(NO_CONTENT);
} }
} }