summaryrefslogtreecommitdiff
path: root/plugins/IntentionPowerPak/test/com/siyeh/ipp/junit/create_assert/AnonymousClassJUnit3_after.java
blob: 9821c9431820a54fc3b39dc8ee3378bd041a2a76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import junit.framework.TestCase;

public class AnonymousClassJUnit3 extends TestCase {

  public void test2BiggerThan1() {
    new Object() {
      void foo() {
          assertTrue(2 > 1);
      }
    };
  }
}