2011-02-07 01:31:55 +00:00
|
|
|
#include "ttysolitaire_test.h"
|
|
|
|
|
|
|
|
const char *program_name;
|
|
|
|
|
|
|
|
int main(int argc, const char *argv[]) {
|
|
|
|
program_name = argv[0];
|
|
|
|
|
|
|
|
test_card();
|
|
|
|
test_cursor();
|
|
|
|
test_deck();
|
|
|
|
test_display();
|
|
|
|
test_frame();
|
|
|
|
test_game();
|
|
|
|
test_keyboard();
|
|
|
|
test_stack();
|
2011-02-13 19:12:45 +00:00
|
|
|
test_test_helper();
|
2011-02-07 01:31:55 +00:00
|
|
|
|
|
|
|
return(0);
|
|
|
|
}
|