summaryrefslogtreecommitdiff
path: root/plugins/InspectionGadgets/test/com/siyeh/igtest/junit/junit3_style_test_method_in_junit4_class/BeforeAnnotationUsed.java
blob: 6ef566f99035c247756bcca246f766aca25593d1 (plain)
1
2
3
4
5
6
7
8
9
import org.junit.Before;

public class BeforeAnnotationUsed {

  @Before
  public void before() {}

  public void <warning descr="Old style JUnit test method 'testOldStyle()' in JUnit 4 class">testOldStyle</warning>() {}
}