summaryrefslogtreecommitdiff
path: root/plugins/IntentionPowerPak/test/com/siyeh/ipp/junit/replace_assert_literal_with_assert_equals/OutsideTestMethod.java
blob: 34c98500412edd0966208b8b7a4be9069e738ba7 (plain)
1
2
3
4
5
6
7
8
import static org.junit.Assert.assertNull;

class OutsideTestMethod {

  void m() {
    <caret>assertNull("asdf");
  }
}