Commit f96cd7a1 authored by 91pida1bif's avatar 91pida1bif
Browse files

finish TestDaten Class

parent a2e4a32a
......@@ -3,15 +3,22 @@ package org.hft.dsa;
import model.Person;
import model.Reader;
public class Main {
public class TestDaten {
public static void main(String[] args) {
Person[] personSortiert = Reader.getSortedSample();
Person[] personUnsortiert = Reader.getRawSample();
//Gibt unsortierte Testdaten aus
for (Person person : personUnsortiert) {
System.out.println(person);
}
//Gibt sortierte Testdaten aus
for (Person person : personSortiert) {
System.out.println(person);
}
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment