summaryrefslogtreecommitdiff
path: root/libs/ode-0.16.1/libccd/src/testsuites/polytope.h
diff options
context:
space:
mode:
authorsanine <sanine.not@pm.me>2022-10-01 20:59:36 -0500
committersanine <sanine.not@pm.me>2022-10-01 20:59:36 -0500
commitc5fc66ee58f2c60f2d226868bb1cf5b91badaf53 (patch)
tree277dd280daf10bf77013236b8edfa5f88708c7e0 /libs/ode-0.16.1/libccd/src/testsuites/polytope.h
parent1cf9cc3408af7008451f9133fb95af66a9697d15 (diff)
add ode
Diffstat (limited to 'libs/ode-0.16.1/libccd/src/testsuites/polytope.h')
-rw-r--r--libs/ode-0.16.1/libccd/src/testsuites/polytope.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/libs/ode-0.16.1/libccd/src/testsuites/polytope.h b/libs/ode-0.16.1/libccd/src/testsuites/polytope.h
new file mode 100644
index 0000000..cf31546
--- /dev/null
+++ b/libs/ode-0.16.1/libccd/src/testsuites/polytope.h
@@ -0,0 +1,24 @@
+#ifndef TEST_POLYTOPE_H
+#define TEST_POLYTOPE_H
+
+#include <cu/cu.h>
+
+TEST(ptSetUp);
+TEST(ptTearDown);
+
+TEST(ptCreate1);
+TEST(ptCreate2);
+TEST(ptNearest);
+
+TEST_SUITE(TSPt) {
+ TEST_ADD(ptSetUp),
+
+ TEST_ADD(ptCreate1),
+ TEST_ADD(ptCreate2),
+ TEST_ADD(ptNearest),
+
+ TEST_ADD(ptTearDown),
+ TEST_SUITE_CLOSURE
+};
+
+#endif