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
310 B
19 lines
310 B
#include "unity.h"
|
|
#include <math.h>
|
|
#include "funktion.h"
|
|
#include <stdio.h>
|
|
|
|
void setUp(void)
|
|
{
|
|
}
|
|
|
|
void tearDown(void)
|
|
{
|
|
}
|
|
|
|
void test_boolesche_nicht_NeedToImplement(void) {
|
|
int eingabe1 = 1;
|
|
int result = boolesche_nicht(eingabe1);
|
|
int ergebnis = 0;
|
|
TEST_ASSERT_EQUAL_INT(ergebnis, result);
|
|
}
|