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
286 B
21 lines
286 B
#include "unity.h"
|
|
#include "funktion.h"
|
|
|
|
void setUp(void)
|
|
{
|
|
}
|
|
|
|
void tearDown(void)
|
|
{
|
|
}
|
|
|
|
void test_Vlength_NeedToImplement(void)
|
|
{
|
|
double a = 6;
|
|
double b = 8;
|
|
double c = 0;
|
|
double exp = Vlength(a,b,c);
|
|
double result = 10;
|
|
TEST_ASSERT_EQUAL_FLOAT(result,exp);
|
|
}
|
|
|