summaryrefslogtreecommitdiff
path: root/src/unittest/test.h
diff options
context:
space:
mode:
authorkwolekr <kwolekr@minetest.net>2015-05-05 11:36:40 -0400
committerkwolekr <kwolekr@minetest.net>2015-05-05 12:00:36 -0400
commitb45df9d6a73d97671cbdd38d77e9b153a80fb458 (patch)
treefbe70ad8b6c5a4646afebb7d55309720f6ae5eb4 /src/unittest/test.h
parent1be2d32fd502eeb68bd63fb07b0325b25ee357bd (diff)
downloadminetest-b45df9d6a73d97671cbdd38d77e9b153a80fb458.tar.gz
minetest-b45df9d6a73d97671cbdd38d77e9b153a80fb458.tar.bz2
minetest-b45df9d6a73d97671cbdd38d77e9b153a80fb458.zip
Tests: Add NodeResolver unittests
Minor misc. NodeResolver cleanups Prefix faux content type constants for testing with t_ to avoid confusion or name collisions
Diffstat (limited to 'src/unittest/test.h')
-rw-r--r--src/unittest/test.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/unittest/test.h b/src/unittest/test.h
index c9a5a2e9a..8219e30fc 100644
--- a/src/unittest/test.h
+++ b/src/unittest/test.h
@@ -124,9 +124,12 @@ public:
};
// A few item and node definitions for those tests that need them
-extern content_t CONTENT_STONE;
-extern content_t CONTENT_GRASS;
-extern content_t CONTENT_TORCH;
+extern content_t t_CONTENT_STONE;
+extern content_t t_CONTENT_GRASS;
+extern content_t t_CONTENT_TORCH;
+extern content_t t_CONTENT_WATER;
+extern content_t t_CONTENT_LAVA;
+extern content_t t_CONTENT_BRICK;
void run_tests();