summaryrefslogtreecommitdiff
path: root/plugins/IntentionPowerPak/test/com/siyeh/ipp/junit/replace_assert_literal_with_assert_equals/OutsideTestMethod_after.java
blob: 0d6315f93c7b0f19bc0ff76725bf9557e5a9e151 (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() {
      assertEquals(null, "asdf");
  }
}