|
|
@ -70,5 +70,15 @@ class NotizbuchTest { |
|
|
|
|
|
|
|
assertEquals("Testnotiz mit Leerzeichen\n", notizbuch.textArea.getText()); |
|
|
|
} |
|
|
|
@Test |
|
|
|
public void testSpeichernUndLadenMitMehrzeiligerNotiz() { |
|
|
|
Notizbuch notizbuch = new Notizbuch(); |
|
|
|
notizbuch.textArea.setText("Erste Zeile\nZweite Zeile\nDritte Zeile"); |
|
|
|
|
|
|
|
notizbuch.saveNote(); |
|
|
|
|
|
|
|
notizbuch.loadNote(); |
|
|
|
|
|
|
|
assertEquals("Erste Zeile\nZweite Zeile\nDritte Zeile\n", notizbuch.textArea.getText()); |
|
|
|
} |
|
|
|
} |