From 6da14e9a2ec5e23f543467b9c46ae25f89a68456 Mon Sep 17 00:00:00 2001 From: traggerW Date: Fri, 15 Sep 2023 18:23:52 +0300 Subject: [PATCH] =?UTF-8?q?G5V8DT-22608=20=D0=90=D0=B2=D1=82=D0=BE=D1=81?= =?UTF-8?q?=D0=BE=D1=80=D1=82=D0=B8=D1=80=D0=BE=D0=B2=D1=89=D0=B8=D0=BA=20?= =?UTF-8?q?=D0=BD=D0=B5=20=D1=81=D0=BE=D1=80=D1=82=D0=B8=D1=80=D1=83=D0=B5?= =?UTF-8?q?=D1=82=20=D0=B4=D0=BE=D1=87=D0=B5=D1=80=D0=BD=D0=B8=D0=B5=20?= =?UTF-8?q?=D0=BF=D0=BE=D0=B4=D1=81=D0=B8=D1=81=D1=82=D0=B5=D0=BC=D1=8B=20?= =?UTF-8?q?=D0=BF=D0=BE=D1=81=D0=BB=D0=B5=20=D0=BF=D0=BE=D0=BB=D1=83=D1=87?= =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D1=8F=20=D0=B8=D0=B7=D0=BC=D0=B5=D0=BD=D0=B5?= =?UTF-8?q?=D0=BD=D0=B8=D0=B9=20=D0=B8=D0=B7=20=D0=B1=D0=B0=D0=B7=D1=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../e1c/v8codestyle/autosort/itests/SortServiceTest.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/com.e1c.v8codestyle.autosort.itests/src/com/e1c/v8codestyle/autosort/itests/SortServiceTest.java b/tests/com.e1c.v8codestyle.autosort.itests/src/com/e1c/v8codestyle/autosort/itests/SortServiceTest.java index ecc3768e..75334ae9 100644 --- a/tests/com.e1c.v8codestyle.autosort.itests/src/com/e1c/v8codestyle/autosort/itests/SortServiceTest.java +++ b/tests/com.e1c.v8codestyle.autosort.itests/src/com/e1c/v8codestyle/autosort/itests/SortServiceTest.java @@ -33,6 +33,7 @@ import org.eclipse.core.runtime.preferences.IEclipsePreferences; import org.eclipse.emf.common.notify.Notification; import org.eclipse.emf.ecore.EReference; import org.eclipse.emf.ecore.EStructuralFeature; +import org.junit.Ignore; import org.junit.Rule; import org.junit.Test; import org.junit.runner.RunWith; @@ -174,6 +175,7 @@ public class SortServiceTest assertEquals("ОбщийМодуль", configuration.getCommonModules().get(5).getName()); } + @Ignore("G5V8DT-24222") @Test public void testSortAfterRemoveEvent() throws Exception { @@ -227,7 +229,7 @@ public class SortServiceTest IBmObject commonModule = transaction.getTopObjectByFqn("CommonModule.ГМодуль"); Configuration configuration = transaction.toTransactionObject(((IConfigurationAware)v8Project).getConfiguration()); - configuration.getCommonModules().remove((CommonModule)commonModule); + configuration.getCommonModules().remove(commonModule); transaction.detachTopObject(commonModule); return null; } @@ -250,6 +252,7 @@ public class SortServiceTest assertEquals("ОбщийМодуль", configuration.getCommonModules().get(4).getName()); } + @Ignore("G5V8DT-24222") @Test public void testSortAfterMoveEvent() throws Exception { @@ -321,6 +324,7 @@ public class SortServiceTest assertEquals("ОбщийМодуль", configuration.getCommonModules().get(5).getName()); } + @Ignore("G5V8DT-24222") @Test public void testSortAfterAddEvent() throws Exception {