tty-solitaire/tests/ttysolitaire_test.c

24 lines
351 B
C
Raw Normal View History

2011-02-07 01:31:55 +00:00
#include "ttysolitaire_test.h"
2013-05-04 20:40:33 +00:00
#include "../src/game.h"
2011-02-07 01:31:55 +00:00
const char *program_name;
2013-05-04 20:40:33 +00:00
struct game game;
2011-02-07 01:31:55 +00:00
int main(int argc, const char *argv[]) {
program_name = argv[0];
2013-05-04 20:40:33 +00:00
(void) argc;
2011-02-07 01:31:55 +00:00
test_card();
test_cursor();
test_deck();
2011-06-09 01:55:44 +00:00
test_gui();
2011-02-07 01:31:55 +00:00
test_frame();
test_game();
test_keyboard();
test_stack();
test_test_helper();
2011-02-07 01:31:55 +00:00
return(0);
}