Initial commit
This commit is contained in:
commit
5fffa66d6c
86 changed files with 8847 additions and 0 deletions
23
test_sorting_criteria.h
Normal file
23
test_sorting_criteria.h
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
/*----------------------------------------------------------
|
||||
* HTBLA-Leonding / Klasse: n/a
|
||||
* ---------------------------------------------------------
|
||||
* Title: Unit Tests for sorting criteria implementation
|
||||
* Author: S. Schraml
|
||||
* ----------------------------------------------------------
|
||||
* Description:
|
||||
* Tests functions for sorting criteria.
|
||||
* ----------------------------------------------------------
|
||||
*/
|
||||
#ifndef ___TEST_SORTING_CRITERIA_H
|
||||
#define ___TEST_SORTING_CRITERIA_H
|
||||
|
||||
#include "shortcut.h"
|
||||
|
||||
TEST(test_is_in_asc_order__shall_be_true_for_ascending_params);
|
||||
TEST(test_is_in_asc_order__shall_be_true_for_equal_params);
|
||||
TEST(test_is_in_asc_order__shall_be_false_for_descending_params);
|
||||
TEST(test_is_in_desc_order__shall_be_false_for_ascending_params);
|
||||
TEST(test_is_in_desc_order__shall_be_true_for_equal_params);
|
||||
TEST(test_is_in_desc_order__shall_be_true_for_descending_params);
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue