blob: d4278251f13260e2c8e43d71ae5277c7c0ec3b77 (
plain)
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;
}
|