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
365 B

  1. #include "unity.h"
  2. #include "funktion.h"
  3. void setUp(void)
  4. {
  5. }
  6. void tearDown(void)
  7. {
  8. }
  9. void test_trapezFlaeche_calculates_correct_area(void) {
  10. double a = 6.0;
  11. double b = 8.0;
  12. double h = 3.0;
  13. double result = trapezFlaeche(a,b,h);
  14. double ergebnis = 21;
  15. printf("Testergebniss %f", ergebnis);
  16. TEST_ASSERT_EQUAL_FLOAT(result, ergebnis);
  17. }