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
323 B
19 lines
323 B
#include "unity.h"
|
|
#include <math.h>
|
|
#include "funktion.h"
|
|
|
|
void setUp(void)
|
|
{
|
|
}
|
|
|
|
void tearDown(void)
|
|
{
|
|
}
|
|
|
|
void test_boolesche_oder_NeedToImplement(void) {
|
|
int eingabe1 = 1;
|
|
int eingabe2 = 1;
|
|
int result = boolesche_oder(eingabe1, eingabe2);
|
|
int ergebnis = 1;
|
|
TEST_ASSERT_EQUAL_FLOAT(ergebnis, result);
|
|
}
|