summaryrefslogtreecommitdiff
path: root/java/typeMigration/test/com/intellij/codeInsight/ConvertToAtomicIntentionTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/typeMigration/test/com/intellij/codeInsight/ConvertToAtomicIntentionTest.java')
-rw-r--r--java/typeMigration/test/com/intellij/codeInsight/ConvertToAtomicIntentionTest.java30
1 files changed, 30 insertions, 0 deletions
diff --git a/java/typeMigration/test/com/intellij/codeInsight/ConvertToAtomicIntentionTest.java b/java/typeMigration/test/com/intellij/codeInsight/ConvertToAtomicIntentionTest.java
new file mode 100644
index 000000000000..d4de1aa249ac
--- /dev/null
+++ b/java/typeMigration/test/com/intellij/codeInsight/ConvertToAtomicIntentionTest.java
@@ -0,0 +1,30 @@
+package com.intellij.codeInsight;
+
+import com.intellij.codeInsight.daemon.quickFix.LightQuickFixParameterizedTestCase;
+import com.intellij.testFramework.PlatformTestUtil;
+import org.jetbrains.annotations.NotNull;
+
+/**
+ * @author anna
+ */
+public class ConvertToAtomicIntentionTest extends LightQuickFixParameterizedTestCase {
+ @Override
+ protected boolean shouldBeAvailableAfterExecution() {
+ return true;
+ }
+
+ @Override
+ protected String getBasePath() {
+ return "/intentions/atomic";
+ }
+
+ @NotNull
+ @Override
+ protected String getTestDataPath() {
+ return PlatformTestUtil.getCommunityPath() + "/java/typeMigration/testData";
+ }
+
+ public void test() throws Exception {
+ doAllTests();
+ }
+} \ No newline at end of file