blob: 049aca4d277a9ceb4125e8ebddfc3736fbc13572 [file] [log] [blame]
package com.siyeh.igtest.junit;
import junit.framework.TestCase;
public class SetupCallsSuperSetupInspection extends TestCase{
protected void setUp() throws Exception {
System.out.println("foo");
}
protected void tearDown() throws Exception {
System.out.println("bar");
}
}