| 839 | } |
| 840 | |
| 841 | bool RunTestDataFile(const char *filename, const NameValuePairs &overrideParameters, bool thorough) |
| 842 | { |
| 843 | s_thorough = thorough; |
| 844 | unsigned int totalTests = 0, failedTests = 0; |
| 845 | TestDataFile((filename ? filename : ""), overrideParameters, totalTests, failedTests); |
| 846 | cout << dec << "\nTests complete. Total tests = " << totalTests << ". Failed tests = " << failedTests << "." << endl; |
| 847 | if (failedTests != 0) |
| 848 | cout << "SOME TESTS FAILED!\n"; |
| 849 | return failedTests == 0; |
| 850 | } |
| 851 |
no test coverage detected