private void erstelleTestdaten() throws ManipelExistentException, StudentExistentException,
DozentExistentException, PruefungsfachExistentException, PruefungExistentException,
PruefungsleistungExistentException {
// ********************************************************************************
// Manipel anlegen
Manipel testManipel1 = new Manipel();
testManipel1.setJahrgang(2007);
testManipel1.setStudienrichtung("BSc. Wirtschaftsinformatik");
Manipel testManipel2 = new Manipel();
testManipel2.setJahrgang(2008);
testManipel2.setStudienrichtung("BSc. Betriebswirtschaftslehre");
Manipel testManipel3 = new Manipel();
testManipel3.setJahrgang(2009);
testManipel3.setStudienrichtung("BSc. Wirtschaftsingenieurwesen");
Manipel testManipel4 = new Manipel();
testManipel4.setJahrgang(2010);
testManipel4.setStudienrichtung("BSc. Betriebswirtschaftslehre");
Manipel testManipel5 = new Manipel();
testManipel5.setJahrgang(2010);
testManipel5.setStudienrichtung("BSc. Wirtschaftsinformatik");
Manipel testManipel6 = new Manipel();
testManipel6.setJahrgang(2010);
testManipel6.setStudienrichtung("BSc. Wirtschaftsingenieurwesen");
manipelService.speichere(testManipel1);
manipelService.speichere(testManipel2);
manipelService.speichere(testManipel3);
manipelService.speichere(testManipel4);