@ -1 +1,2 @@
target/**
src/test/c/test_test.c
@ -187,4 +187,4 @@ int mainx() {
printf("Vielen Dank fürs Spielen! Auf Wiedersehen.\n");
return 0;
}
@ -0,0 +1,20 @@
#ifdef TEST
#include "unity.h"
#include "Mathe.h"
void setUp(void)
{
void tearDown(void)
void test_Mathe_plus(void)
int a=berechneErgebnis(1,2,'+');
/* assert */
TEST_ASSERT_EQUAL_INT(a,3);
#endif