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.

37 lines
800 B

  1. #ifdef TEST
  2. #include <stdbool.h>
  3. #include <stdio.h>
  4. #include "unity.h"
  5. #include "casualQuiz.h"
  6. // Test setup function
  7. void setUp(void) {
  8. }
  9. // Test teardown function
  10. void tearDown(void) {
  11. }
  12. void test_FcheckaufRichtigkeit_correct_answer_atIndex1(void){
  13. int TESTeingabe = 1;
  14. int TESTindex = 0;
  15. int TESTrichtige_antwort[]={1};
  16. bool testfall;
  17. testfall = FcheckaufRichtigkeit(TESTeingabe, TESTrichtige_antwort, TESTindex);
  18. TEST_ASSERT_TRUE(testfall == true);
  19. }
  20. void test_FcheckaufRichtigkeit_correct_answer_atIndex2(void){
  21. int TESTeingabe = 2;
  22. int TESTindex = 0;
  23. int TESTrichtige_antwort[]={2};
  24. bool testfall;
  25. testfall = FcheckaufRichtigkeit(TESTeingabe, TESTrichtige_antwort, TESTindex);
  26. TEST_ASSERT_TRUE(testfall == true);
  27. }
  28. #endif //Test