summaryrefslogtreecommitdiff
path: root/plugins/IntentionPowerPak/test/com/siyeh/ipp/junit/create_assert/StaticImportJUnit4_after.java
blob: 792a4f778816d2debaa765e3af6bcd44755adcc3 (plain)
1
2
3
4
5
6
7
8
9
10
import static java.util.Collections.EMPTY_LIST;
import static org.junit.Assert.assertNotNull;

public class AnonymousClassJUnit4 {

  @org.junit.Test
  public void testNotNull() {
      assertNotNull(EMPTY_LIST);
  }
}