|
|
@ -199,6 +199,7 @@ void test_LabyrinthSchritte(void){ |
|
|
|
int hoehe = 5; |
|
|
|
int breite = 6; |
|
|
|
int schritte = 14; |
|
|
|
int versuche = 0; |
|
|
|
lab laby = { |
|
|
|
{'0', '1', '0', '0', '0', '0'}, |
|
|
|
{'0', '1', '0', '1', '1', '0'}, |
|
|
@ -209,7 +210,7 @@ void test_LabyrinthSchritte(void){ |
|
|
|
|
|
|
|
printlabyrinth(laby, hoehe, breite); //hier in die funktion die print frage machen |
|
|
|
wegsuchen(laby, &result, 0, 0, 4, 5); |
|
|
|
labyrinthschritte(laby, hoehe, breite, schritte); //die geliche funktion nur mit dem if vergleich und userinput |
|
|
|
labyrinthschritte(laby, hoehe, breite, schritte, versuche); //die geliche funktion nur mit dem if vergleich und userinput |
|
|
|
TEST_ASSERT_EQUAL_INT(1, result); |
|
|
|
|
|
|
|
} |
|
|
|