| 2325 | } |
| 2326 | |
| 2327 | int |
| 2328 | main (int argc, char *argv[]) |
| 2329 | { |
| 2330 | Py_Initialize(); |
| 2331 | if (Py_IsInitialized()) |
| 2332 | { |
| 2333 | initWrapTester(); |
| 2334 | |
| 2335 | TEST (testBox2); |
| 2336 | TEST (testBox3); |
| 2337 | TEST (testC3); |
| 2338 | TEST (testC4); |
| 2339 | TEST (testEuler); |
| 2340 | TEST (testFrustum); |
| 2341 | TEST (testLine); |
| 2342 | TEST (testM33); |
| 2343 | TEST (testM44); |
| 2344 | TEST (testPlane); |
| 2345 | TEST (testQuat); |
| 2346 | TEST (testRandom); |
| 2347 | TEST (testShear); |
| 2348 | TEST (testV2); |
| 2349 | TEST (testV3); |
| 2350 | |
| 2351 | Py_Finalize(); |
| 2352 | } |
| 2353 | |
| 2354 | TEST (testStringTable); |
| 2355 | |
| 2356 | return 0; |
| 2357 | } |
nothing calls this directly
no test coverage detected