summaryrefslogtreecommitdiff
path: root/plugins/IntentionPowerPak/test/com/siyeh/ipp/junit/create_assert/StaticImportJUnit4_after.java
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/IntentionPowerPak/test/com/siyeh/ipp/junit/create_assert/StaticImportJUnit4_after.java')
-rw-r--r--plugins/IntentionPowerPak/test/com/siyeh/ipp/junit/create_assert/StaticImportJUnit4_after.java10
1 files changed, 10 insertions, 0 deletions
diff --git a/plugins/IntentionPowerPak/test/com/siyeh/ipp/junit/create_assert/StaticImportJUnit4_after.java b/plugins/IntentionPowerPak/test/com/siyeh/ipp/junit/create_assert/StaticImportJUnit4_after.java
new file mode 100644
index 000000000000..792a4f778816
--- /dev/null
+++ b/plugins/IntentionPowerPak/test/com/siyeh/ipp/junit/create_assert/StaticImportJUnit4_after.java
@@ -0,0 +1,10 @@
+import static java.util.Collections.EMPTY_LIST;
+import static org.junit.Assert.assertNotNull;
+
+public class AnonymousClassJUnit4 {
+
+ @org.junit.Test
+ public void testNotNull() {
+ assertNotNull(EMPTY_LIST);
+ }
+} \ No newline at end of file