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

class OutsideTestMethod {

  void m() {
      assertNull("asdf");
  }
}