Parent Directory
|
Revision Log
+Opps, helps if you include the two new files for Finley tests
1 | #include "MeshAdapterTestCase.h" |
2 | |
3 | #include "CppUnitTest/TestRunner.h" |
4 | |
5 | using namespace CppUnitTest; |
6 | |
7 | int main(int argc, char* argv[]) |
8 | { |
9 | // |
10 | // object which runs all of the tests |
11 | TestRunner runner; |
12 | // |
13 | // add the RangeTestCase suite of tests to the runner |
14 | runner.addTest ("MeshAdapter", MeshAdapterTestCase::suite()); |
15 | |
16 | // actually run the unit tests. |
17 | runner.run (argc, argv); |
18 | return 0; |
19 | } |
20 |
ViewVC Help | |
Powered by ViewVC 1.1.26 |