horror/thirdparty/ode-0.16.5/tests/main.cpp

14 lines
234 B
C++
Raw Normal View History

2024-06-10 17:48:14 +08:00
// 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;
}