Fxml #8

Merged
fassband merged 31 commits from fxml into main 2022-04-30 18:09:54 +02:00
2 changed files with 6 additions and 6 deletions
Showing only changes of commit 90f6855a15 - Show all commits

View File

@ -15,6 +15,6 @@ public class App {
public static void main(String[] args) {
System.out.println(new App().getGreeting());
FileIO io = new FileIO(System.getProperty("user.dir") + File.separator + "tournierverwaltung_angrynerds");
FileIO io = new FileIO(System.getProperty("user.dir") + "/tournierverwaltung_angrynerds");
}
}

View File

@ -17,7 +17,7 @@ import static org.junit.jupiter.api.Assertions.*;
class FileIOTest {
String RESOURCES_DIR = ".\\src\\test\\resources\\ch\\zhaw\\projekt2\\turnierverwaltung\\";
String RESOURCES_DIR = "./src/test/resources/ch/zhaw/projekt2/turnierverwaltung/";
String mainDir;
String saveDir;
FileIO io;
@ -25,7 +25,7 @@ class FileIOTest {
@Test
void FileIONewDir() throws IOException {
mainDir = RESOURCES_DIR + "FileIONew";
saveDir = mainDir + "\\" + "saves";
saveDir = mainDir + "/saves";
File mainDirFile = new File(mainDir);
File saveDirFile = new File(mainDir);
try{
@ -75,7 +75,7 @@ class FileIOTest {
void loadTournament() throws IOException, ClassNotFoundException {
mainDir = RESOURCES_DIR + "FileIORead";
io = new FileIO(mainDir);
Tournament tournament = io.loadTournament(new File(mainDir + "\\saves\\test1.txt"));
Tournament tournament = io.loadTournament(new File(mainDir + "/saves/test1.txt"));
assertEquals("test1", tournament.getName());
}
@ -88,7 +88,7 @@ class FileIOTest {
@Test
void loadTournamentEmpty(){
io = new FileIO(mainDir);
assertThrows(IOException.class, () -> io.loadTournament(new File(mainDir + "\\saves\\empty.txt")));
assertThrows(IOException.class, () -> io.loadTournament(new File(mainDir + "/saves/empty.txt")));
}
@Test
@ -110,7 +110,7 @@ class FileIOTest {
void saveTournament() {
Tournament tournament = new Tournament("test1");
io.saveTournament(tournament);
File file = new File(mainDir + "\\saves\\test1.txt");
File file = new File(mainDir + "/saves/test1.txt");
if(file.exists()){
file.delete();
} else {