Initial commit

This commit is contained in:
github-classroom[bot] 2025-01-28 00:13:55 +00:00 committed by GitHub
parent 392362b8ee
commit 8c7ea4970a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
74 changed files with 8220 additions and 30 deletions

26
test_ms_ui_utils.h Normal file
View file

@ -0,0 +1,26 @@
/*----------------------------------------------------------
* HTBLA-Leonding / Klasse: n/a
* ---------------------------------------------------------
* Exercise Number: B1
* Title: Unit Tests for Mine Sweeper UI utilities
* Author: S. Schraml
* ----------------------------------------------------------
* Description:
* Test functions for Mine Sweeper UI Utilities.
* ----------------------------------------------------------
*/
#ifndef ___TEST_MS_UI_UTILS_H
#define ___TEST_MS_UI_UTILS_H
#include "shortcut.h"
TEST(test_random);
TEST(test_convert_column_addr);
TEST(test_convert_row_addr);
TEST(test_convert_actions);
TEST(test_get_marker_symbol);
TEST(test_get_mine_symbol);
TEST(test_get_status_label);
#endif