X-Git-Url: https://git.teslayout.com/public/public/public/?a=blobdiff_plain;f=example%2Fdiameter%2Flauncher%2Ftesting%2FTestCase.hpp;h=715856a96039c68712c9260227ede05569a51e92;hb=c6b62fd814b6e5b4e3ba65b6f092f6aa4e1d298d;hp=ab8e4a3fe11b6eaa830a77335257c3dcd145b4e4;hpb=a06169181968130467d2e54ac91676aecd14bcea;p=anna.git diff --git a/example/diameter/launcher/testing/TestCase.hpp b/example/diameter/launcher/testing/TestCase.hpp index ab8e4a3..715856a 100644 --- a/example/diameter/launcher/testing/TestCase.hpp +++ b/example/diameter/launcher/testing/TestCase.hpp @@ -57,7 +57,7 @@ public: anna::xml::Node* asXML(anna::xml::Node* parent) const throw(); }; - TestCase(unsigned int id) : a_id(id), a_state(State::Initialized), a_startTime(0), a_interactiveAmount(-1) { /*a_stepsIt = a_steps.end()*/;} + TestCase(unsigned int id); ~TestCase(); struct State { enum _v { Initialized, InProgress, Failed, Success }; }; @@ -109,7 +109,7 @@ public: //helpers int steps() const throw() { return a_steps.size(); } - void addStep(TestStep *step) throw() { a_steps[1+steps()] = step; } + void addStep(TestStep *step) throw() { a_steps.push_back(step); } TestStepWait *searchNextWaitConditionFulfilled(const anna::DataBlock &message, bool waitFromEntity) throw(); // When a message arrives, we identify the test case by mean the Session-Id. Then, from the current step iterator (included), @@ -123,8 +123,8 @@ public: private: // private members: unsigned int a_id; - std::map a_steps; - std::map::const_iterator a_stepsIt; + std::vector a_steps; + std::vector::const_iterator a_stepsIt; std::map a_hopByHops; // for wait-answer State::_v a_state; anna::Millisecond a_startTime;