summaryrefslogtreecommitdiff
path: root/plugins/IntentionPowerPak/test/com/siyeh/ipp/junit/flip_assert_literal/ExistingStaticImport.java
blob: 96be19ed47a7e34ad9b4561f41cf58015486a224 (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() {
    <caret>assertTrue(true);
  }
}