001 package de.hska.info1.sortieren;
002
003 /**
004 * JUnit-Testklasse für Bubblesort
005 * @author Christian Pape
006 *
007 */
008 public class BubblesortTest extends SortierenTest {
009
010 public BubblesortTest() {
011 super(new Bubblesort());
012 }
013
014 }