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.

24 lines
291 B

2 years ago
  1. #include "unity.h"
  2. #include "cmock.h"
  3. #include <Umgebung.h>
  4. #include <stdlib.h>
  5. void setUp(void)
  6. {
  7. }
  8. void tearDown(void)
  9. {
  10. }
  11. void test_Umgebung_RealU(void){
  12. int realU[N][N];
  13. realU[14][15] = 0;
  14. int result = RealU(realU);
  15. TEST_ASSERT_EQUAL_INT(1, result);
  16. }