@ -59,5 +59,16 @@ class NotizbuchTest {
assertEquals("Äpfel & Birnen €\n", notizbuch.textArea.getText());
}
@Test
public void testSpeichernMitLeerzeichen() {
Notizbuch notizbuch = new Notizbuch();
notizbuch.textArea.setText("Testnotiz mit Leerzeichen");
notizbuch.saveNote();
notizbuch.loadNote();
assertEquals("Testnotiz mit Leerzeichen\n", notizbuch.textArea.getText());