summaryrefslogtreecommitdiff
path: root/plugins/IntentionPowerPak/test/com/siyeh/ipp/junit/flip_assert_literal/StaticImportWithoutTestMethod_after.java
blob: 5bf7c4d7c1fb44f896999d755e7ed4c4b313039a (plain)
1
2
3
4
5
6
7
8
9
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;

class StaticImportWithoutTestMethod {

  void t() {
      assertFalse(!false);
  }
}