-
Notifications
You must be signed in to change notification settings - Fork 570
Expand file tree
/
Copy pathtest.cpp
More file actions
33 lines (27 loc) · 739 Bytes
/
test.cpp
File metadata and controls
33 lines (27 loc) · 739 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
#include "harness.h"
TEST_CASE(normal_roundtrip) {
CHECK_LOAD("normal.slvs");
CHECK_RENDER("normal.png");
CHECK_SAVE("normal.slvs");
}
TEST_CASE(normal_migrate_from_v20) {
CHECK_LOAD("normal_v20.slvs");
CHECK_SAVE("normal.slvs");
}
TEST_CASE(normal_migrate_from_v22) {
CHECK_LOAD("normal_v22.slvs");
CHECK_SAVE("normal.slvs");
}
TEST_CASE(free_in_3d_roundtrip) {
CHECK_LOAD("free_in_3d.slvs");
CHECK_RENDER("free_in_3d.png");
CHECK_SAVE("free_in_3d.slvs");
}
TEST_CASE(free_in_3d_migrate_from_v20) {
CHECK_LOAD("free_in_3d_v20.slvs");
CHECK_SAVE("free_in_3d.slvs");
}
TEST_CASE(free_in_3d_migrate_from_v22) {
CHECK_LOAD("free_in_3d_v22.slvs");
CHECK_SAVE("free_in_3d.slvs");
}