tty-solitaire/tests/ttysolitaire_test.c
2013-05-04 16:40:33 -04:00

24 lines
351 B
C

#include "ttysolitaire_test.h"
#include "../src/game.h"
const char *program_name;
struct game game;
int main(int argc, const char *argv[]) {
program_name = argv[0];
(void) argc;
test_card();
test_cursor();
test_deck();
test_gui();
test_frame();
test_game();
test_keyboard();
test_stack();
test_test_helper();
return(0);
}