Project Contains Errors. Automated Testing Not Possible!!
Mon Dec 3 13:01:34 CET 2018
Buildfile: /Volumes/data/fontys/modules/alda/2018/practical_students/doc/aldabuild.xml
compile:
compile-tests:
[javac] Compiling 8 source files to /Volumes/data/fontys/modules/alda/2018/practical_students/g31/trunk/02_sorting/Sorting/build/test/classes
[javac] /Volumes/data/fontys/modules/alda/2018/practical_students/svnroot/clab/02_sorting/Sorting/test/studenttest/BasicSortingTest.java:34: error: type InsertionSorter does not take parameters
[javac] private InsertionSorter is;
[javac] ^
[javac] /Volumes/data/fontys/modules/alda/2018/practical_students/svnroot/clab/02_sorting/Sorting/test/studenttest/BasicSortingTest.java:35: error: type SelectionSorter does not take parameters
[javac] private SelectionSorter ss;
[javac] ^
[javac] /Volumes/data/fontys/modules/alda/2018/practical_students/svnroot/clab/02_sorting/Sorting/test/studenttest/HeapSorterTest.java:4: error: package heapsort does not exist
[javac] import heapsort.HeapSorter;
[javac] ^
[javac] /Volumes/data/fontys/modules/alda/2018/practical_students/svnroot/clab/02_sorting/Sorting/test/studenttest/HeapSorterTest.java:5: error: package heapsort does not exist
[javac] import heapsort.HeapSorter;
[javac] ^
[javac] /Volumes/data/fontys/modules/alda/2018/practical_students/svnroot/clab/02_sorting/Sorting/test/studenttest/HeapSorterTest.java:22: error: cannot find symbol
[javac] private HeapSorter hs;
[javac] ^
[javac] symbol: class HeapSorter
[javac] location: class HeapSorterTest
[javac] /Volumes/data/fontys/modules/alda/2018/practical_students/svnroot/clab/02_sorting/Sorting/test/studenttest/BasicSortingTest.java:81: error: cannot infer type arguments for InsertionSorter
[javac] is = new InsertionSorter<>(books);
[javac] ^
[javac] reason: cannot use '<>' with non-generic class InsertionSorter
[javac] /Volumes/data/fontys/modules/alda/2018/practical_students/svnroot/clab/02_sorting/Sorting/test/studenttest/BasicSortingTest.java:89: error: cannot infer type arguments for SelectionSorter
[javac] ss = new SelectionSorter<>(books);
[javac] ^
[javac] reason: cannot use '<>' with non-generic class SelectionSorter
[javac] /Volumes/data/fontys/modules/alda/2018/practical_students/svnroot/clab/02_sorting/Sorting/test/studenttest/BasicSortingTest.java:98: error: cannot infer type arguments for SelectionSorter
[javac] ss = new SelectionSorter<>(books);
[javac] ^
[javac] reason: cannot use '<>' with non-generic class SelectionSorter
[javac] /Volumes/data/fontys/modules/alda/2018/practical_students/svnroot/clab/02_sorting/Sorting/test/studenttest/BasicSortingTest.java:108: error: cannot infer type arguments for InsertionSorter
[javac] is = new InsertionSorter<>(books);
[javac] ^
[javac] reason: cannot use '<>' with non-generic class InsertionSorter
[javac] /Volumes/data/fontys/modules/alda/2018/practical_students/svnroot/clab/02_sorting/Sorting/test/studenttest/BasicSortingTest.java:116: error: cannot infer type arguments for InsertionSorter
[javac] is = new InsertionSorter<>(books);
[javac] ^
[javac] reason: cannot use '<>' with non-generic class InsertionSorter
[javac] /Volumes/data/fontys/modules/alda/2018/practical_students/svnroot/clab/02_sorting/Sorting/test/studenttest/BasicSortingTest.java:129: error: cannot infer type arguments for SelectionSorter
[javac] ss = new SelectionSorter<>(books1);
[javac] ^
[javac] reason: cannot use '<>' with non-generic class SelectionSorter
[javac] /Volumes/data/fontys/modules/alda/2018/practical_students/svnroot/clab/02_sorting/Sorting/test/studenttest/BasicSortingTest.java:133: error: cannot infer type arguments for SelectionSorter
[javac] ss = new SelectionSorter<>(books1);
[javac] ^
[javac] reason: cannot use '<>' with non-generic class SelectionSorter
[javac] /Volumes/data/fontys/modules/alda/2018/practical_students/svnroot/clab/02_sorting/Sorting/test/studenttest/HeapSorterTest.java:47: error: cannot find symbol
[javac] hs = new HeapSorter<>(students);
[javac] ^
[javac] symbol: class HeapSorter
[javac] location: class HeapSorterTest
[javac] /Volumes/data/fontys/modules/alda/2018/practical_students/svnroot/clab/02_sorting/Sorting/test/studenttest/QuickSortTest.java:27: error: type QuickSorter does not take parameters
[javac] QuickSorter qs = new QuickSorter<>(new Integer[]{});
[javac] ^
[javac] /Volumes/data/fontys/modules/alda/2018/practical_students/svnroot/clab/02_sorting/Sorting/test/studenttest/QuickSortTest.java:27: error: cannot infer type arguments for QuickSorter
[javac] QuickSorter qs = new QuickSorter<>(new Integer[]{});
[javac] ^
[javac] reason: cannot use '<>' with non-generic class QuickSorter
[javac] /Volumes/data/fontys/modules/alda/2018/practical_students/svnroot/clab/02_sorting/Sorting/test/studenttest/QuickSortTest.java:36: error: type QuickSorter does not take parameters
[javac] QuickSorter qs = new QuickSorter<>(new Integer[]{1});
[javac] ^
[javac] /Volumes/data/fontys/modules/alda/2018/practical_students/svnroot/clab/02_sorting/Sorting/test/studenttest/QuickSortTest.java:36: error: cannot infer type arguments for QuickSorter
[javac] QuickSorter qs = new QuickSorter<>(new Integer[]{1});
[javac] ^
[javac] reason: cannot use '<>' with non-generic class QuickSorter
[javac] /Volumes/data/fontys/modules/alda/2018/practical_students/svnroot/clab/02_sorting/Sorting/test/studenttest/QuickSortTest.java:45: error: type QuickSorter does not take parameters
[javac] QuickSorter qs = new QuickSorter<>(new Integer[]{2, 1});
[javac] ^
[javac] /Volumes/data/fontys/modules/alda/2018/practical_students/svnroot/clab/02_sorting/Sorting/test/studenttest/QuickSortTest.java:45: error: cannot infer type arguments for QuickSorter
[javac] QuickSorter qs = new QuickSorter<>(new Integer[]{2, 1});
[javac] ^
[javac] reason: cannot use '<>' with non-generic class QuickSorter
[javac] /Volumes/data/fontys/modules/alda/2018/practical_students/svnroot/clab/02_sorting/Sorting/test/studenttest/QuickSortTest.java:55: error: type QuickSorter does not take parameters
[javac] QuickSorter qs = new QuickSorter<>(new Integer[]{0, 1});
[javac] ^
[javac] /Volumes/data/fontys/modules/alda/2018/practical_students/svnroot/clab/02_sorting/Sorting/test/studenttest/QuickSortTest.java:55: error: cannot infer type arguments for QuickSorter
[javac] QuickSorter qs = new QuickSorter<>(new Integer[]{0, 1});
[javac] ^
[javac] reason: cannot use '<>' with non-generic class QuickSorter
[javac] /Volumes/data/fontys/modules/alda/2018/practical_students/svnroot/clab/02_sorting/Sorting/test/studenttest/QuickSortTest.java:65: error: type QuickSorter does not take parameters
[javac] QuickSorter qs = new QuickSorter<>(new Integer[]{0, 1, 2});
[javac] ^
[javac] /Volumes/data/fontys/modules/alda/2018/practical_students/svnroot/clab/02_sorting/Sorting/test/studenttest/QuickSortTest.java:65: error: cannot infer type arguments for QuickSorter
[javac] QuickSorter qs = new QuickSorter<>(new Integer[]{0, 1, 2});
[javac] ^
[javac] reason: cannot use '<>' with non-generic class QuickSorter
[javac] /Volumes/data/fontys/modules/alda/2018/practical_students/svnroot/clab/02_sorting/Sorting/test/studenttest/QuickSortTest.java:82: error: type QuickSorter does not take parameters
[javac] QuickSorter qsi = new QuickSorter<>(integers);
[javac] ^
[javac] /Volumes/data/fontys/modules/alda/2018/practical_students/svnroot/clab/02_sorting/Sorting/test/studenttest/QuickSortTest.java:82: error: cannot infer type arguments for QuickSorter
[javac] QuickSorter qsi = new QuickSorter<>(integers);
[javac] ^
[javac] reason: cannot use '<>' with non-generic class QuickSorter
[javac] /Volumes/data/fontys/modules/alda/2018/practical_students/svnroot/clab/02_sorting/Sorting/test/studenttest/QuickSortTest.java:100: error: type QuickSorter does not take parameters
[javac] QuickSorter qsi = new QuickSorter<>(integers);
[javac] ^
[javac] /Volumes/data/fontys/modules/alda/2018/practical_students/svnroot/clab/02_sorting/Sorting/test/studenttest/QuickSortTest.java:100: error: cannot infer type arguments for QuickSorter
[javac] QuickSorter qsi = new QuickSorter<>(integers);
[javac] ^
[javac] reason: cannot use '<>' with non-generic class QuickSorter
[javac] /Volumes/data/fontys/modules/alda/2018/practical_students/svnroot/clab/02_sorting/Sorting/test/studenttest/QuickSortTest.java:118: error: type QuickSorter does not take parameters
[javac] QuickSorter qsi = new QuickSorter<>(integers);
[javac] ^
[javac] /Volumes/data/fontys/modules/alda/2018/practical_students/svnroot/clab/02_sorting/Sorting/test/studenttest/QuickSortTest.java:118: error: cannot infer type arguments for QuickSorter
[javac] QuickSorter qsi = new QuickSorter<>(integers);
[javac] ^
[javac] reason: cannot use '<>' with non-generic class QuickSorter
[javac] /Volumes/data/fontys/modules/alda/2018/practical_students/svnroot/clab/02_sorting/Sorting/test/studenttest/QuickSortTest.java:130: error: type QuickSorter does not take parameters
[javac] QuickSorter qs = new QuickSorter<>(new Integer[]{3, 2, 5, 3, 6});
[javac] ^
[javac] /Volumes/data/fontys/modules/alda/2018/practical_students/svnroot/clab/02_sorting/Sorting/test/studenttest/QuickSortTest.java:130: error: cannot infer type arguments for QuickSorter
[javac] QuickSorter qs = new QuickSorter<>(new Integer[]{3, 2, 5, 3, 6});
[javac] ^
[javac] reason: cannot use '<>' with non-generic class QuickSorter
[javac] /Volumes/data/fontys/modules/alda/2018/practical_students/svnroot/clab/02_sorting/Sorting/test/studenttest/QuickSortTest.java:143: error: type QuickSorter does not take parameters
[javac] QuickSorter qs = new QuickSorter<>(new Integer[]{3, 3, 5, 2, 6});
[javac] ^
[javac] /Volumes/data/fontys/modules/alda/2018/practical_students/svnroot/clab/02_sorting/Sorting/test/studenttest/QuickSortTest.java:143: error: cannot infer type arguments for QuickSorter
[javac] QuickSorter qs = new QuickSorter<>(new Integer[]{3, 3, 5, 2, 6});
[javac] ^
[javac] reason: cannot use '<>' with non-generic class QuickSorter
[javac] /Volumes/data/fontys/modules/alda/2018/practical_students/svnroot/clab/02_sorting/Sorting/test/studenttest/QuickSortTest.java:156: error: type QuickSorter does not take parameters
[javac] QuickSorter qs = new QuickSorter<>(new Integer[]{6, 2, 5, 3, 3});
[javac] ^
[javac] /Volumes/data/fontys/modules/alda/2018/practical_students/svnroot/clab/02_sorting/Sorting/test/studenttest/QuickSortTest.java:156: error: cannot infer type arguments for QuickSorter
[javac] QuickSorter qs = new QuickSorter<>(new Integer[]{6, 2, 5, 3, 3});
[javac] ^
[javac] reason: cannot use '<>' with non-generic class QuickSorter
[javac] /Volumes/data/fontys/modules/alda/2018/practical_students/svnroot/clab/02_sorting/Sorting/test/studenttest/QuickSortTest.java:169: error: type QuickSorter does not take parameters
[javac] QuickSorter qs = new QuickSorter<>(new Integer[]{2, 3, 5, 3, 6});
[javac] ^
[javac] /Volumes/data/fontys/modules/alda/2018/practical_students/svnroot/clab/02_sorting/Sorting/test/studenttest/QuickSortTest.java:169: error: cannot infer type arguments for QuickSorter
[javac] QuickSorter qs = new QuickSorter<>(new Integer[]{2, 3, 5, 3, 6});
[javac] ^
[javac] reason: cannot use '<>' with non-generic class QuickSorter
[javac] /Volumes/data/fontys/modules/alda/2018/practical_students/svnroot/clab/02_sorting/Sorting/test/studenttest/QuickSortTest.java:182: error: type QuickSorter does not take parameters
[javac] QuickSorter qs = new QuickSorter<>(new Integer[]{2, 3, 3, 3, 6});
[javac] ^
[javac] /Volumes/data/fontys/modules/alda/2018/practical_students/svnroot/clab/02_sorting/Sorting/test/studenttest/QuickSortTest.java:182: error: cannot infer type arguments for QuickSorter
[javac] QuickSorter qs = new QuickSorter<>(new Integer[]{2, 3, 3, 3, 6});
[javac] ^
[javac] reason: cannot use '<>' with non-generic class QuickSorter
[javac] 39 errors