| 127 | public: // workload functions |
| 128 | std::string description() const override { return "SnapTest"; } |
| 129 | Future<Void> setup(Database const& cx) override { |
| 130 | TraceEvent("SnapTestWorkloadSetup").log(); |
| 131 | return Void(); |
| 132 | } |
| 133 | Future<Void> start(Database const& cx) override { |
| 134 | TraceEvent("SnapTestWorkloadStart").log(); |
| 135 | if (clientId == 0) { |
nothing calls this directly
no test coverage detected