| 52 | } |
| 53 | |
| 54 | class PingBot : public TestSequence { |
| 55 | public: |
| 56 | void OnStep() final; |
| 57 | |
| 58 | private: |
| 59 | void OnTestStart() final; |
| 60 | void OnTestFinish() final; |
| 61 | |
| 62 | int step_count_ = 0; |
| 63 | double sum_ping_time_ = 0; |
| 64 | |
| 65 | static const int PING_COUNT = 50; |
| 66 | }; |
| 67 | |
| 68 | class FeatureLayerBot : public TestSequence { |
| 69 | public: |
no outgoing calls