Browse Source

Unittest: sucheBuchstabe existiert

remotes/origin/wortspieldev
Lennart Goetze 11 months ago
parent
commit
17a2523b67
  1. 1
      src/WortSpiel.h
  2. 5
      test/test_WortSpiel.c

1
src/WortSpiel.h

@ -4,5 +4,6 @@
void loescheBuchstaben(char* wort, char buchstabe); void loescheBuchstaben(char* wort, char buchstabe);
int zaehleBuchstaben(const char* wort, char buchstabe); int zaehleBuchstaben(const char* wort, char buchstabe);
void umdrehenWort(char* wort); void umdrehenWort(char* wort);
void testSucheBuchstabe_existiert(void);
#endif // WORTSPIEL_H #endif // WORTSPIEL_H

5
test/test_WortSpiel.c

@ -69,7 +69,12 @@ void testUmdrehenWort_einBuchstabe(void) {
TEST_ASSERT_EQUAL_STRING("A", wort3); TEST_ASSERT_EQUAL_STRING("A", wort3);
} }
void testSucheBuchstabe_existiert(void) {
char wort1[] = "Programming";
int index1 = sucheBuchstabe(wort1, 'g');
TEST_ASSERT_EQUAL_INT(3, index1);
}

Loading…
Cancel
Save