Initial commit

This commit is contained in:
github-classroom[bot] 2025-04-28 22:09:20 +00:00 committed by GitHub
commit 5fffa66d6c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
86 changed files with 8847 additions and 0 deletions

23
test_sorting_criteria.h Normal file
View 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