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.

23 lines
355 B

2 years ago
  1. #include "unity.h"
  2. #include "funktion.h"
  3. void setUp(void)
  4. {
  5. }
  6. void tearDown(void)
  7. {
  8. }
  9. void test_Vangle_NeedToImplement(void)
  10. {
  11. double x1 = 2;
  12. double x2 = 2;
  13. double x3 = 4;
  14. double z1 = 2;
  15. double z2 = 2;
  16. double z3 = 4;
  17. double exp = Vangle(x1,x2,x3,z1,z2,z3);
  18. double result = 11;
  19. TEST_ASSERT_EQUAL_FLOAT(result,exp);
  20. }