Initial commit
This commit is contained in:
commit
b4c0b22597
104 changed files with 10100 additions and 0 deletions
24
test_insertion_sort_binary_search.h
Normal file
24
test_insertion_sort_binary_search.h
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
/*----------------------------------------------------------
|
||||
* HTBLA-Leonding / Klasse: n/a
|
||||
* ---------------------------------------------------------
|
||||
* Title: Unit Tests for insertion sort with binary search
|
||||
* Author: S. Schraml
|
||||
* ----------------------------------------------------------
|
||||
* Description:
|
||||
* Tests functions for insertion sort with binary search.
|
||||
* ----------------------------------------------------------
|
||||
*/
|
||||
#ifndef ___TEST_INSERTION_SORT_BINARY_SEARCH_H
|
||||
#define ___TEST_INSERTION_SORT_BINARY_SEARCH_H
|
||||
|
||||
#include "shortcut.h"
|
||||
#include "config.h"
|
||||
|
||||
TEST(test_insertion_sort_binsearch_ascending);
|
||||
TEST(test_insertion_sort_binsearch_descending);
|
||||
TEST(test_insertion_sort_binsearch_ascending_multiple);
|
||||
TEST(test_insertion_sort_binsearch_descending_multiple);
|
||||
TEST(test_insertion_sort_binsearch_ascending_reverse);
|
||||
TEST(test_insertion_sort_binsearch_descending_reverse);
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue