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.
 
 

21 lines
322 B

#include "unity.h"
#include "funktion.h"
void setUp(void)
{
}
void tearDown(void)
{
}
void test_binomial_coefficient_NeedToImplement(void)
{
int a=2;
int b=3;
int result=binomial_coefficient(a,b);
int ergebnis=1;
printf("Testergebniss %d", ergebnis);
TEST_ASSERT_EQUAL_INT(result, ergebnis);
}