don't hardcode methods that reference testdata, use annotation instead
[fedora-idea.git] / plugins / IdeaTestAssistant / testData / referenceCollector / DoTestParameters.java
blobc591ea3e31bcc64f012cb4d67b9d1b679245f474
1 public class ATest extends LightCodeInsightFixtureTestCase {
3 public void testDoTestParameters() throws Exception {
4 doTest();
7 private void doTest() throws Exception {
8 doTest("java");
11 private void doTest(String extension) throws Exception {
12 configureByFile(getTestName(true) + "." + extension);
15 private void configureByFile(@com.intellij.testFramework.TestDataFile String file) {