|
@ -104,4 +104,16 @@ class NotizbuchTest { |
|
|
|
|
|
|
|
|
assertEquals("Äpfel & Birnen €\n", notizbuch.textArea.getText()); |
|
|
assertEquals("Äpfel & Birnen €\n", notizbuch.textArea.getText()); |
|
|
} |
|
|
} |
|
|
|
|
|
@Test |
|
|
|
|
|
public void testSpeichernUndLadenMitMehrzeiligerNotiz2() { |
|
|
|
|
|
Notizbuch notizbuch = new Notizbuch(); |
|
|
|
|
|
notizbuch.textArea.setText("Erste Zeile\nZweite Zeile\nDritte Zeile"); |
|
|
|
|
|
|
|
|
|
|
|
notizbuch.saveNote(); |
|
|
|
|
|
notizbuch.textArea.setText(""); // Setze den Textbereich zurück |
|
|
|
|
|
|
|
|
|
|
|
notizbuch.loadNote(); |
|
|
|
|
|
|
|
|
|
|
|
assertEquals("Erste Zeile\nZweite Zeile\nDritte Zeile\n", notizbuch.textArea.getText()); |
|
|
|
|
|
} |
|
|
} |
|
|
} |