Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/testing/UnitTest++/src/TestRunner.h')
-rw-r--r--src/testing/UnitTest++/src/TestRunner.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/testing/UnitTest++/src/TestRunner.h b/src/testing/UnitTest++/src/TestRunner.h
new file mode 100644
index 0000000..8b9934a
--- /dev/null
+++ b/src/testing/UnitTest++/src/TestRunner.h
@@ -0,0 +1,17 @@
+#ifndef UNITTEST_TESTRUNNER_H
+#define UNITTEST_TESTRUNNER_H
+
+
+namespace UnitTest {
+
+class TestReporter;
+class TestList;
+
+
+int RunAllTests();
+int RunAllTests(TestReporter& reporter, TestList const& list, char const* suiteName, int maxTestTimeInMs = 0);
+
+}
+
+
+#endif