summaryrefslogtreecommitdiff
path: root/plugins/IntentionPowerPak/test/com/siyeh/ipp/junit/flip_assert_literal/ExistingStaticImport_after.java
blob: 8eccf08eb0ad93231bee51e216c0c0849f3a61a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
import org.junit.Test;

import static org.junit.Assert.assertTrue;
import static org.junit.Assert.assertFalse;

class X {
  @Test
  void t() {
      assertFalse(!true);
  }
}