|
@ -15,6 +15,7 @@ class NotizbuchTest { |
|
|
|
|
|
|
|
|
assertEquals("Testnotiz\n", notizbuch.textArea.getText()); |
|
|
assertEquals("Testnotiz\n", notizbuch.textArea.getText()); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
@Test |
|
|
@Test |
|
|
public void testSpeichernMitLeererNotiz() { |
|
|
public void testSpeichernMitLeererNotiz() { |
|
|
Notizbuch notizbuch = new Notizbuch(); |
|
|
Notizbuch notizbuch = new Notizbuch(); |
|
@ -25,6 +26,36 @@ class NotizbuchTest { |
|
|
assertEquals("", notizbuch.textArea.getText()); |
|
|
assertEquals("", notizbuch.textArea.getText()); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@Test |
|
|
|
|
|
public void testLadenVonExistierenderDatei() { |
|
|
|
|
|
// Vor dem Test sicherstellen, dass eine Datei mit Inhalt existiert |
|
|
|
|
|
// Hier wird angenommen, dass bereits eine "notizen.txt" Datei vorhanden ist |
|
|
|
|
|
|
|
|
|
|
|
Notizbuch notizbuch = new Notizbuch(); |
|
|
|
|
|
notizbuch.loadNote(); |
|
|
|
|
|
|
|
|
|
|
|
assertNotEquals("", notizbuch.textArea.getText()); |
|
|
|
|
|
} |
|
|
|
|
|
/* @Test |
|
|
|
|
|
public void testSpeichernMitDateiSchreibfehler() { |
|
|
|
|
|
Notizbuch notizbuch = new Notizbuch(); |
|
|
|
|
|
notizbuch.textArea.setText("Testnotiz"); |
|
|
|
|
|
|
|
|
|
|
|
// Setze die Datei als schreibgeschützt, um einen Schreibfehler zu simulieren |
|
|
|
|
|
|
|
|
|
|
|
notizbuch.saveNote(); |
|
|
|
|
|
|
|
|
|
|
|
// Erwarte eine Fehlermeldung |
|
|
|
|
|
// TODO: Implementierung einer Methode zum Einfangen von Fehlermeldungen |
|
|
|
|
|
} |
|
|
|
|
|
@Test |
|
|
|
|
|
public void testLadenMitNichtExistierenderDatei() { |
|
|
|
|
|
// Setze den Dateipfad auf einen nicht existierenden Ort |
|
|
|
|
|
|
|
|
|
|
|
Notizbuch notizbuch = new Notizbuch(); |
|
|
|
|
|
notizbuch.loadNote(); |
|
|
|
|
|
|
|
|
|
|
|
assertEquals("", notizbuch.textArea.getText()); |
|
|
|
|
|
} */ |
|
|
|
|
|
|
|
|
} |
|
|
} |