23 lines
693 B
C
Executable file
23 lines
693 B
C
Executable file
/*----------------------------------------------------------
|
|
* HTBLA-Leonding
|
|
* ---------------------------------------------------------
|
|
* Author: S. Schraml
|
|
* ----------------------------------------------------------
|
|
* Description:
|
|
* Test functions for Roman Number.
|
|
* ----------------------------------------------------------
|
|
*/
|
|
#ifndef ___TEST_ROMAN_NUMBER_H
|
|
#define ___TEST_ROMAN_NUMBER_H
|
|
|
|
#include "shortcut.h"
|
|
|
|
TEST(test_create_with_valid_number);
|
|
TEST(test_create_with_invalid_number);
|
|
TEST(test_create_with_null_string);
|
|
TEST(test_get_valid_value);
|
|
TEST(test_get_value_from_invalid_number);
|
|
TEST(test_calc_roman_gcd);
|
|
TEST(test_int_gdc);
|
|
|
|
#endif
|