2011-02-07 01:31:55 +00:00
|
|
|
#include <assert.h>
|
2011-05-08 02:09:39 +00:00
|
|
|
#include "test_helper.h"
|
2011-02-07 01:31:55 +00:00
|
|
|
#include "../lib/frame.h"
|
|
|
|
|
|
|
|
void test_initialize_frame() {
|
|
|
|
struct frame *frame;
|
|
|
|
|
|
|
|
allocate_frame(&frame);
|
|
|
|
initialize_frame(frame);
|
2011-02-12 18:00:23 +00:00
|
|
|
|
|
|
|
assert(frame->shape == NULL);
|
2011-05-09 03:38:31 +00:00
|
|
|
assert(frame->begin_y == 0);
|
|
|
|
assert(frame->begin_x == 0);
|
2011-02-07 01:31:55 +00:00
|
|
|
|
2011-02-14 02:10:47 +00:00
|
|
|
free_frame(frame);
|
2011-02-07 01:31:55 +00:00
|
|
|
}
|
|
|
|
|
2011-05-01 06:06:43 +00:00
|
|
|
void test_duplicate_frame() {
|
|
|
|
struct frame *frame_0, *frame_1;
|
2011-05-09 03:38:31 +00:00
|
|
|
const int begin_y = 5, begin_x = 10;
|
2011-05-01 06:06:43 +00:00
|
|
|
|
|
|
|
allocate_frame(&frame_0);
|
2011-05-09 03:38:31 +00:00
|
|
|
set_frame(frame_0, begin_y, begin_x);
|
2011-05-01 06:06:43 +00:00
|
|
|
frame_1 = duplicate_frame(frame_0);
|
|
|
|
|
|
|
|
assert(frame_0 != frame_1);
|
|
|
|
assert(frames_equal(frame_0, frame_1));
|
|
|
|
}
|
|
|
|
|
2011-02-07 01:31:55 +00:00
|
|
|
void test_set_frame() {
|
|
|
|
struct frame *frame;
|
2011-05-09 03:38:31 +00:00
|
|
|
int begin_y = 5;
|
|
|
|
int begin_x = 10;
|
2011-02-07 01:31:55 +00:00
|
|
|
|
|
|
|
allocate_frame(&frame);
|
|
|
|
initialize_frame(frame);
|
2011-05-09 03:38:31 +00:00
|
|
|
set_frame(frame, begin_y, begin_x);
|
2011-02-07 01:31:55 +00:00
|
|
|
|
2011-05-09 03:38:31 +00:00
|
|
|
assert(frame->begin_y == begin_y);
|
|
|
|
assert(frame->begin_x == begin_x);
|
2011-02-07 01:31:55 +00:00
|
|
|
|
2011-02-14 02:10:47 +00:00
|
|
|
free_frame(frame);
|
2011-02-07 01:31:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void test_frame() {
|
|
|
|
test_initialize_frame();
|
2011-05-01 06:06:43 +00:00
|
|
|
test_duplicate_frame();
|
2011-02-07 01:31:55 +00:00
|
|
|
test_set_frame();
|
|
|
|
}
|