summaryrefslogtreecommitdiff
path: root/plugins/IntentionPowerPak/test/com/siyeh/ipp/junit/create_assert/AnonymousClassJUnit4_after.java
blob: 787d0e6d6115f809a436b6db931d582db625d528 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import org.junit.Assert;

public class AnonymousClassJUnit4 {

  @org.junit.Test
  public void test2BiggerThan1() {
    new Object() {
      void foo() {
          Assert.assertTrue(2 > 1);
      }
    }
  }
}