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.
23 lines
313 B
23 lines
313 B
#ifdef TEST
|
|
#include "unity.h"
|
|
#include <stdlib.h>
|
|
#include "PuzzleI.h"
|
|
#include "Spieler.h"
|
|
#include "Koenig.h"
|
|
#include "Turm.h"
|
|
|
|
|
|
void setUp(void) {
|
|
}
|
|
|
|
void tearDown(void) {
|
|
}
|
|
|
|
void test_puzzlebrett_erstellen(void) {
|
|
char** brett = Puzzlebrett_erstellen();
|
|
|
|
print_Puzzlebrett(brett);
|
|
|
|
}
|
|
|
|
#endif // TEST
|