-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.c
More file actions
executable file
·36 lines (33 loc) · 724 Bytes
/
Copy pathtest.c
File metadata and controls
executable file
·36 lines (33 loc) · 724 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#include "test.h"
#include "util_test.h"
#include "unit_test.h"
#include "world_test.h"
#include "vector_test.h"
#include "unit/behavior_test.h"
#include "renderer_test.h"
#include "shape_test.h"
#include "factory_test.h"
#include "grid_test.h"
#include "kdtree_test.h"
#include "rand_range_test.h"
#include "bktree_test.h"
#include "util/linked_list_test.h"
#include "gui/gui_component_group_test.h"
#include <stdio.h>
void test() {
test_util();
test_unit();
test_world();
test_vector();
test_unit_behavior();
test_renderer();
test_shape();
test_factory();
test_grid();
test_kdtree();
test_rand_range();
test_bktree();
test_linked_list();
test_gui_component_group();
printf("TEST OK\n");
}