File: main.cpp

package info (click to toggle)
ode 2%3A0.16.6-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 13,000 kB
  • sloc: cpp: 90,025; ansic: 14,677; sh: 4,346; makefile: 762; python: 330
file content (13 lines) | stat: -rw-r--r-- 247 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
// openode_UnitTest++.cpp : Defines the entry point for the console application.
//

#include <UnitTest++.h>
#include <ode/ode.h>

int main()
{
    dInitODE();
    int res = UnitTest::RunAllTests();
    dCloseODE();
    return res;
}