Praktikum 3: test sollte wieder grün sein

This commit is contained in:
Johannes Theiner 2018-04-20 13:15:02 +02:00
parent 90a5f6f6d1
commit 533e2a5962
2 changed files with 3 additions and 1 deletions

View File

@ -84,6 +84,7 @@ public class Vorlesungsverzeichnis {
list.add(v.getDozent());
}
}
Collections.sort(list);
map.put(title, list);
list = new ArrayList<>();
}

View File

@ -81,9 +81,10 @@ public class VorlesungsverzeichnisTest {
Map<String, List<String>> map = vorlesungsverzeichnis.multipleTitles();
List<String> math = new ArrayList<>();
math.add("Rabe");
math.add("von Coelln");
math.add("Rabe");
Collections.sort(math);
assertEquals(map.get("Mathematik 2"), math);
}