mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
17 lines
264 B
C++
17 lines
264 B
C++
#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
|