polytreewm/tests/geom_position.c
2021-12-04 23:54:02 +05:00

16 lines
236 B
C

#include <assert.h>
#include "../src/geom.h"
static void test_create();
void test() {
test_create();
}
void test_create()
{
const struct Position position = position_create();
assert(position.x == 0);
assert(position.y == 0);
}