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
256 B
22 lines
256 B
#ifdef TEST
|
|
|
|
#include "unity.h"
|
|
|
|
#include "minirechner.h"
|
|
|
|
void setUp(void)
|
|
{
|
|
}
|
|
|
|
void tearDown(void)
|
|
{
|
|
}
|
|
|
|
// test addition
|
|
void test_minitaschenrechner_3_plus_4(void)
|
|
{
|
|
float result = addieren(3, 4);
|
|
TEST_ASSERT_EQUAL(7, result);
|
|
}
|
|
|
|
#endif // TEST
|