| 48 | |
| 49 | protected: |
| 50 | template<class T> void Add(const T& test) { |
| 51 | std::unique_ptr<TestSequence> t = std::make_unique<T>(test); |
| 52 | t->agent_ = this; |
| 53 | sequences_.push_back(std::move(t)); |
| 54 | } |
| 55 | |
| 56 | virtual void OnTestsBegin () = 0; |
| 57 | virtual void OnTestsEnd () = 0; |
nothing calls this directly
no outgoing calls
no test coverage detected