X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDRO_tests%2FTestLib_Listener.h;h=5bb456e67ac0de670e5e8a497511f233a775533c;hb=1ad3406d04aa81800693d6811c7c36e87e0c95c1;hp=8953a29d7e1b4ea21c18987cd047ed0bd4105ccf;hpb=acfd496c5826a46a6b42bf1aa9bf091af80c8b13;p=modules%2Fhydro.git diff --git a/src/HYDRO_tests/TestLib_Listener.h b/src/HYDRO_tests/TestLib_Listener.h index 8953a29d..5bb456e6 100644 --- a/src/HYDRO_tests/TestLib_Listener.h +++ b/src/HYDRO_tests/TestLib_Listener.h @@ -19,6 +19,8 @@ #pragma once #include +#include +#include typedef long long INT64; ///< the cross-platform type definition for 64-bits integer @@ -34,6 +36,9 @@ public: void Clear(); INT64 GetCompleteTimeInMS() const; + int GetNbTests() const; + int GetNbSuites() const; + void DumpFailures(); virtual void startTest( CppUnit::Test* ); virtual void endTest( CppUnit::Test* ); @@ -46,5 +51,8 @@ public: private: INT64 myStart; ///< start time in milliseconds INT64 myComplete; ///< complete time of all tests execution in milliseconds + int myNbTests; + int myNbSuites; + std::vector myFailures; };