Of course

This commit is contained in:
MarcUs7i 2025-02-13 16:52:14 +01:00
parent d6cffc16e4
commit 8edc8dab71
13 changed files with 951 additions and 951 deletions

View file

@ -1,26 +1,26 @@
/*----------------------------------------------------------
* HTBLA-Leonding
* ---------------------------------------------------------
* Author: S. Schraml
* ----------------------------------------------------------
* Description:
* Executes all unit tests of Roman Number.
* ----------------------------------------------------------
*/
#include "shortcut.h"
#include "test_roman_number.h"
int main(int argc, char *argv[])
{
ADD_TEST(test_create_with_valid_number);
ADD_TEST(test_create_with_invalid_number);
ADD_TEST(test_create_with_null_string);
ADD_TEST(test_get_valid_value);
ADD_TEST(test_get_value_from_invalid_number);
ADD_TEST(test_calc_roman_gcd);
ADD_TEST(test_int_gdc);
run_tests();
return 0;
}
/*----------------------------------------------------------
* HTBLA-Leonding
* ---------------------------------------------------------
* Author: S. Schraml
* ----------------------------------------------------------
* Description:
* Executes all unit tests of Roman Number.
* ----------------------------------------------------------
*/
#include "shortcut.h"
#include "test_roman_number.h"
int main(int argc, char *argv[])
{
ADD_TEST(test_create_with_valid_number);
ADD_TEST(test_create_with_invalid_number);
ADD_TEST(test_create_with_null_string);
ADD_TEST(test_get_valid_value);
ADD_TEST(test_get_value_from_invalid_number);
ADD_TEST(test_calc_roman_gcd);
ADD_TEST(test_int_gdc);
run_tests();
return 0;
}