aboutsummaryrefslogtreecommitdiffstats
path: root/TestHelper.h
diff options
context:
space:
mode:
Diffstat (limited to 'TestHelper.h')
-rw-r--r--TestHelper.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/TestHelper.h b/TestHelper.h
index 022c715f..e5f96f51 100644
--- a/TestHelper.h
+++ b/TestHelper.h
@@ -164,7 +164,7 @@ public:
bool vmtrace = false; ///< Create EVM execution tracer // TODO: Link with log verbosity?
bool fillTests = false; ///< Create JSON test files from execution results
bool stats = false; ///< Execution time stats
- bool statsFull = false; ///< Output full stats - execution times for every test
+ std::string statsOutFile; ///< Stats output file. "out" for standard output
/// Test selection
/// @{
@@ -191,10 +191,12 @@ class Listener
public:
virtual ~Listener() = default;
+ virtual void suiteStarted(std::string const&) {}
virtual void testStarted(std::string const& _name) = 0;
virtual void testFinished() = 0;
static void registerListener(Listener& _listener);
+ static void notifySuiteStarted(std::string const& _name);
static void notifyTestStarted(std::string const& _name);
static void notifyTestFinished();