You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
289 B

#ifdef TEST
#include "unity.h"
#include "zahlenraten.h"
void setUp(void)
{
}
void tearDown(void)
{
}
void test_zahlenraten_gib_zufallszahl(void)
{
int result = gib_zufallszahl();
TEST_ASSERT_GREATER_THAN (0, result);
TEST_ASSERT_LESS_THAN (101, result);
}
#endif // TEST