summaryrefslogtreecommitdiffhomepage
path: root/test/app.hpp
blob: b1995e77d6ede12f36d1f88b5bdb504d17b7429d (plain)
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
37
38
39
40
41
42
43
44
45
46
47
#pragma once
#undef FM_NO_DEBUG
#include "compat/assert.hpp"

namespace floormat {

struct chunk_coords;
struct chunk_coords_;
class chunk;
class world;

} // namespace floormat

namespace floormat::Test {

chunk& make_test_chunk(world& w, chunk_coords_ ch);

void test_astar();
void test_astar_pool();
void test_bitmask();
void test_bptr();
void test_coords();
void test_critter();
void test_dijkstra();
void test_entity();
void test_hash();
void test_hole();
void test_iptr();
void test_json();
void test_json2();
void test_json3();
void test_loader();
void test_loader2();
void test_loader3();
void test_local();
void test_magnum_math();
void test_math();
void test_raycast();
void test_region();
void test_rtree();
void test_save();
void test_saves();
void test_script();
void test_wall_atlas();
void test_wall_atlas2();

} // namespace floormat::Test