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

class StaticImportWithoutTestMethod {

  void t() {
    <caret>assertTrue(false);
  }
}