Skip to content

Commit

Permalink
More bugfixes
Browse files Browse the repository at this point in the history
  • Loading branch information
dfuchss committed Feb 8, 2024
1 parent 7497638 commit f75f207
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;
import org.slf4j.Logger;
Expand All @@ -22,12 +22,12 @@ public class RunnerBaseTest {
protected static final String INPUT_TEXT = "../pipeline-core/src/test/resources/teastore.txt";
protected static final String INPUT_MODEL_ARCHITECTURE = "../pipeline-core/src/test/resources/teastore.repository";
protected static final String INPUT_MODEL_ARCHITECTURE_UML = "../pipeline-core/src/test/resources/teastore.uml";
protected static final String OUTPUT_DIR = "../target/testout";
protected final String OUTPUT_DIR = "../target/testout-" + this.getClass().getSimpleName();
protected static final String ADDITIONAL_CONFIGS = "../pipeline-core/src/test/resources/additionalConfig.txt";
protected static final String PROJECT_NAME = "teastore";

@BeforeAll
static void setup() {
@BeforeEach
void setup() {
new File(OUTPUT_DIR).mkdirs();
}

Expand Down

0 comments on commit f75f207

Please sign in to comment.