2011-02-06 23:31:55 -02:00
|
|
|
#include "ttysolitaire_test.h"
|
2013-05-04 16:40:33 -04:00
|
|
|
#include "../src/game.h"
|
2011-02-06 23:31:55 -02:00
|
|
|
|
|
|
|
const char *program_name;
|
2013-05-04 16:40:33 -04:00
|
|
|
struct game game;
|
2011-02-06 23:31:55 -02:00
|
|
|
|
|
|
|
int main(int argc, const char *argv[]) {
|
|
|
|
program_name = argv[0];
|
|
|
|
|
2013-05-04 16:40:33 -04:00
|
|
|
(void) argc;
|
|
|
|
|
2011-02-06 23:31:55 -02:00
|
|
|
test_card();
|
|
|
|
test_cursor();
|
|
|
|
test_deck();
|
2011-06-08 22:55:44 -03:00
|
|
|
test_gui();
|
2011-02-06 23:31:55 -02:00
|
|
|
test_frame();
|
|
|
|
test_game();
|
|
|
|
test_keyboard();
|
|
|
|
test_stack();
|
2011-02-13 17:12:45 -02:00
|
|
|
test_test_helper();
|
2011-02-06 23:31:55 -02:00
|
|
|
|
|
|
|
return(0);
|
|
|
|
}
|