main.cpp 247 B

12345678910111213
  1. // openode_UnitTest++.cpp : Defines the entry point for the console application.
  2. //
  3. #include <UnitTest++.h>
  4. #include <ode/ode.h>
  5. int main()
  6. {
  7. dInitODE();
  8. int res = UnitTest::RunAllTests();
  9. dCloseODE();
  10. return res;
  11. }