[Bugfix] Prevents the deletion of productive data (#1522)
prevents the deletion of productive data
This commit is contained in:
parent
a9ee698432
commit
2971425544
1 changed files with 0 additions and 13 deletions
|
@ -5,7 +5,6 @@ import static org.junit.jupiter.api.Assertions.*;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.nio.file.Files;
|
import java.nio.file.Files;
|
||||||
import java.nio.file.Path;
|
import java.nio.file.Path;
|
||||||
import java.nio.file.Paths;
|
|
||||||
|
|
||||||
import org.junit.jupiter.api.BeforeEach;
|
import org.junit.jupiter.api.BeforeEach;
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
|
@ -44,18 +43,6 @@ public class SPdfApplicationTest {
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testMainApplicationStartup() throws IOException, InterruptedException {
|
public void testMainApplicationStartup() throws IOException, InterruptedException {
|
||||||
// Setup mock environment for the main method
|
|
||||||
Path settingsPath = Paths.get("configs/settings.yml");
|
|
||||||
Path customSettingsPath = Paths.get("configs/custom_settings.yml");
|
|
||||||
|
|
||||||
// Ensure the files do not exist for the test
|
|
||||||
if (Files.exists(settingsPath)) {
|
|
||||||
Files.delete(settingsPath);
|
|
||||||
}
|
|
||||||
if (Files.exists(customSettingsPath)) {
|
|
||||||
Files.delete(customSettingsPath);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Run the main method
|
// Run the main method
|
||||||
SPdfApplication.main(new String[]{});
|
SPdfApplication.main(new String[]{});
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue