Correct init at constructor
authorEduardo Ramos Testillano <eduardo.ramos.testillano@ericsson.com>
Wed, 9 Dec 2015 02:54:46 +0000 (03:54 +0100)
committerEduardo Ramos Testillano <eduardo.ramos.testillano@ericsson.com>
Wed, 9 Dec 2015 02:54:46 +0000 (03:54 +0100)
example/diameter/launcher/testing/TestManager.cpp
example/diameter/launcher/testing/TestManager.hpp

index 1317ee3..d4b4759 100644 (file)
@@ -95,7 +95,7 @@ TestManager::TestManager() :
   a_inProgressLimit = UINT_MAX; // no limit
   a_clock = NULL;
   //a_testPool.clear();
-  a_statSummary.clear();
+  //a_statSummary.clear();
   a_currentTestIt = a_testPool.end();
 }
 
index 9e007df..10ca097 100644 (file)
@@ -62,6 +62,7 @@ class TestManager : public anna::timex::TimeEventObserver, public anna::Singleto
     unsigned int a_sucessTcs;
 
   public:
+    StatSummary() { clear(); }
     void newTCState(const TestCase::State::_v beginState, const TestCase::State::_v endState) throw();
     void clear() throw();
     unsigned int getInProgressCount() const throw() { return a_inprogressTcs; }