Initial commit
This commit is contained in:
commit
b4c0b22597
104 changed files with 10100 additions and 0 deletions
24
test_quick_sort.h
Normal file
24
test_quick_sort.h
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
/*----------------------------------------------------------
|
||||
* 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue