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.

18 lines
310 B

  1. #include "unity.h"
  2. #include <math.h>
  3. #include "funktion.h"
  4. #include <stdio.h>
  5. void setUp(void)
  6. {
  7. }
  8. void tearDown(void)
  9. {
  10. }
  11. void test_boolesche_nicht_NeedToImplement(void) {
  12. int eingabe1 = 1;
  13. int result = boolesche_nicht(eingabe1);
  14. int ergebnis = 0;
  15. TEST_ASSERT_EQUAL_INT(ergebnis, result);
  16. }