~ubuntu-branches/debian/jessie/libccd/jessie

« back to all changes in this revision

Viewing changes to src/testsuites/polytope.h

  • Committer: Package Import Robot
  • Author(s): Jose Luis Rivero
  • Date: 2014-03-24 16:51:48 UTC
  • Revision ID: package-import@ubuntu.com-20140324165148-mfno979f58rv322z
Tags: upstream-2.0
ImportĀ upstreamĀ versionĀ 2.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef TEST_POLYTOPE_H
 
2
#define TEST_POLYTOPE_H
 
3
 
 
4
#include <cu/cu.h>
 
5
 
 
6
TEST(ptSetUp);
 
7
TEST(ptTearDown);
 
8
 
 
9
TEST(ptCreate1);
 
10
TEST(ptCreate2);
 
11
TEST(ptNearest);
 
12
 
 
13
TEST_SUITE(TSPt) {
 
14
    TEST_ADD(ptSetUp),
 
15
 
 
16
    TEST_ADD(ptCreate1),
 
17
    TEST_ADD(ptCreate2),
 
18
    TEST_ADD(ptNearest),
 
19
 
 
20
    TEST_ADD(ptTearDown),
 
21
    TEST_SUITE_CLOSURE
 
22
};
 
23
 
 
24
#endif