23-timed-sorting-3/test_stopwatch.h
github-classroom[bot] 5fffa66d6c
Initial commit
2025-04-28 22:09:20 +00:00

21 lines
752 B
C

/*----------------------------------------------------------
* HTBLA-Leonding / Klasse: n/a
* ---------------------------------------------------------
* Title: Unit Tests for the stopwatch implementation
* Author: S. Schraml
* ----------------------------------------------------------
* Description:
* Tests functions of the stopwatch.
* ----------------------------------------------------------
*/
#ifndef ___TEST_STOPWATCH_H
#define ___TEST_STOPWATCH_H
#include "shortcut.h"
TEST(test_stopwatch_is_active__shall_provide_running_state);
TEST(test_stopwatch_start__shall_provide_elapsed_time);
TEST(test_stopwatch_start_stop__shall_provide_elapsed_time);
TEST(test_stopwatch_start_stop_resume__shall_provide_elapsed_time);
#endif