/*---------------------------------------------------------- * HTBLA-Leonding / Klasse: n/a * --------------------------------------------------------- * Title: Unit Tests for insertion sort * Author: S. Schraml * ---------------------------------------------------------- * Description: * Tests functions for insertion sort. * ---------------------------------------------------------- */ #ifndef ___TEST_INSERTION_SORT_H #define ___TEST_INSERTION_SORT_H #include "shortcut.h" #include "config.h" TEST(test_insertion_sort_ascending); TEST(test_insertion_sort_descending); TEST(test_insertion_sort_ascending_multiple); TEST(test_insertion_sort_descending_multiple); TEST(test_insertion_sort_ascending_reverse); TEST(test_insertion_sort_descending_reverse); #endif