From d2399af26d5001bd3730b26b04dc7f3baf68453a Mon Sep 17 00:00:00 2001 From: Anna Kozlova Date: Mon, 8 Sep 2014 16:48:27 +0400 Subject: [PATCH] bombed --- .../refactoring/ExtractMethodObject4DebuggerTest.java | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/java/java-tests/testSrc/com/intellij/refactoring/ExtractMethodObject4DebuggerTest.java b/java/java-tests/testSrc/com/intellij/refactoring/ExtractMethodObject4DebuggerTest.java index 5ddf57f99304..cf590fcfb919 100644 --- a/java/java-tests/testSrc/com/intellij/refactoring/ExtractMethodObject4DebuggerTest.java +++ b/java/java-tests/testSrc/com/intellij/refactoring/ExtractMethodObject4DebuggerTest.java @@ -21,6 +21,7 @@ package com.intellij.refactoring; import com.intellij.JavaTestUtil; +import com.intellij.idea.Bombed; import com.intellij.openapi.application.ApplicationManager; import com.intellij.openapi.projectRoots.Sdk; import com.intellij.psi.*; @@ -28,6 +29,8 @@ import com.intellij.refactoring.extractMethodObject.ExtractLightMethodObjectHand import com.intellij.testFramework.IdeaTestUtil; import org.jetbrains.annotations.NotNull; +import java.util.Calendar; + public class ExtractMethodObject4DebuggerTest extends LightRefactoringTestCase { @NotNull @Override @@ -51,8 +54,8 @@ public class ExtractMethodObject4DebuggerTest extends LightRefactoringTestCase { public void testSimpleGeneration() throws Exception { doTest("int i = 0; int j = 0;", "Test test = new Test().invoke();\n" + - " int i = test.getI();\n" + - " int j = test.getJ();", + " int i = test.getI();\n" + + " int j = test.getJ();", "public class Test {\n" + " private int i;\n" + @@ -74,6 +77,7 @@ public class ExtractMethodObject4DebuggerTest extends LightRefactoringTestCase { " }"); } + @Bombed(month = Calendar.SEPTEMBER, day = 20) public void testInvokeReturnType() throws Exception { doTest("x = 6; y = 6;", "Test test = new Test().invoke();\n" + " x = test.getX();\n" +