tty-solitaire/test/ttysolitaire_test.c
Murilo Pereira 422a866e10 Added helper functions for the unit tests.
* Also added tests for the helper functions
2011-02-13 19:35:40 -02:00

21 lines
311 B
C

#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();
test_util();
test_test_helper();
return(0);
}