13141516171819
public class TestBubbleSort extends TestSortingAlgorithm { @Override protected ISortingAlgorithm createAlgorithm() { // debugOut = true; return new BubbleSort(); }