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.
19 lines
280 B
19 lines
280 B
#include "unity.h"
|
|
#include <math.h>
|
|
#include "funktion.h"
|
|
#include "funktion.c"
|
|
|
|
void setUp(void)
|
|
{
|
|
}
|
|
|
|
void tearDown(void)
|
|
{
|
|
}
|
|
|
|
void test_ByOne_NeedToImplement(void) {
|
|
int n = 10;
|
|
int result = ByOne(n);
|
|
int ergebnis = 2;
|
|
TEST_ASSERT_EQUAL_INT(ergebnis, result);
|
|
}
|