/*---------------------------------------------------------- * HTBLA-Leonding / Klasse: n/a * --------------------------------------------------------- * Title: Unit Tests for quick sort * Author: S. Schraml * ---------------------------------------------------------- * Description: * Tests functions for quick sort. * ---------------------------------------------------------- */ #ifndef ___TEST_QUICK_SORT_H #define ___TEST_QUICK_SORT_H #include "shortcut.h" #include "config.h" TEST(test_quick_sort_ascending); TEST(test_quick_sort_descending); TEST(test_quick_sort_ascending_multiple); TEST(test_quick_sort_descending_multiple); TEST(test_quick_sort_ascending_reverse); TEST(test_quick_sort_descending_reverse); #endif