summaryrefslogtreecommitdiff
path: root/libs/ode-0.16.1/libccd/src/testsuites/polytope.h
blob: cf315468582a4f9fe344c6339ce74e53fd01608a (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
#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