24-timed-sorting-4/test_bubble_sort.h
github-classroom[bot] b4c0b22597
Initial commit
2025-04-28 22:11:20 +00:00

24 lines
No EOL
753 B
C

/*----------------------------------------------------------
* HTBLA-Leonding / Klasse: n/a
* ---------------------------------------------------------
* Title: Unit Tests for bubble sort
* Author: S. Schraml
* ----------------------------------------------------------
* Description:
* Tests functions for bubble sort.
* ----------------------------------------------------------
*/
#ifndef ___TEST_BUBBLE_SORT_H
#define ___TEST_BUBBLE_SORT_H
#include "shortcut.h"
#include "config.h"
TEST(test_bubble_sort_ascending);
TEST(test_bubble_sort_descending);
TEST(test_bubble_sort_ascending_multiple);
TEST(test_bubble_sort_descending_multiple);
TEST(test_bubble_sort_ascending_reverse);
TEST(test_bubble_sort_descending_reverse);
#endif