Initial commit

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

24
test_quick_sort.h Normal file
View 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