tty-solitaire/test/frame_test.c

42 lines
655 B
C
Raw Normal View History

2011-02-07 01:31:55 +00:00
#include <assert.h>
#include "../lib/frame.h"
void test_initialize_frame() {
struct frame *frame;
allocate_frame(&frame);
initialize_frame(frame);
assert(frame->shape == NULL);
assert(frame->start_y == 0);
assert(frame->start_x == 0);
2011-02-07 01:31:55 +00:00
2011-02-14 02:10:47 +00:00
free_frame(frame);
2011-02-12 18:30:33 +00:00
2011-02-07 01:31:55 +00:00
return;
}
void test_set_frame() {
struct frame *frame;
2011-02-12 18:30:33 +00:00
int start_y = 5;
int start_x = 10;
2011-02-07 01:31:55 +00:00
allocate_frame(&frame);
initialize_frame(frame);
set_frame(frame, start_y, start_x);
assert(frame->start_y == start_y);
assert(frame->start_x == start_x);
2011-02-14 02:10:47 +00:00
free_frame(frame);
2011-02-12 18:30:33 +00:00
2011-02-07 01:31:55 +00:00
return;
}
void test_frame() {
test_initialize_frame();
test_set_frame();
return;
}