package com.jadekler.sarah;
import org.junit.Test;
import static org.hamcrest.CoreMatchers.equalTo;
import static org.hamcrest.MatcherAssert.assertThat;
public class QuickSortTest {
private Sort sorter = new QuickSort();
@Test
public void testQuickSort() {
assertThat(sorter.sort(new int[]{3, 5, 1, 2, 4}), equalTo(new int[]{1, 2, 3, 4, 5}));
}
}