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

class OutsideTestMethod {

  void m() {
    <caret>assertEquals("asdf", null);
  }
}