Skip to content

Commit

Permalink
removed base class from generator runner tests
Browse files Browse the repository at this point in the history
  • Loading branch information
LorenzoBettini committed Nov 29, 2023
1 parent b179a15 commit 4dcde7b
Showing 1 changed file with 12 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@
package org.eclipse.xsemantics.dsl.tests.generator;

import org.eclipse.xsemantics.dsl.generator.XsemanticsOutputConfigurationProvider;
import org.eclipse.xsemantics.dsl.tests.XsemanticsAbstractTests;
import org.eclipse.xsemantics.dsl.tests.XsemanticsInjectorProvider;

import static org.junit.Assert.*;

import java.io.BufferedInputStream;
import java.io.File;
import java.io.FileFilter;
Expand All @@ -33,8 +34,16 @@

@InjectWith(XsemanticsInjectorProvider.class)
@RunWith(XtextRunner.class)
public class XsemanticsGeneratorRunnerTests extends XsemanticsAbstractTests {
protected static final String VALIDATION_SUBDIR = "validation/";
public class XsemanticsGeneratorRunnerTests {
private static final String VALIDATION_SUBDIR = "validation/";

private static final String TESTS_INPUT_FILES = "./tests_input_files/";

private static final String TESTS_INPUT_FILES_WITH_ERRORS = "./tests_input_files_with_errors/";

private static final String EXPECTATION_DIR = "expectations/";

private static final String RESULT_DIR = "test-gen/";

@Inject
private GeneratorForTests generator;
Expand Down

0 comments on commit 4dcde7b

Please sign in to comment.