| 1086 | } |
| 1087 | |
| 1088 | static Json::Value DumpMeasurementToJsonArray( |
| 1089 | std::map<std::string, std::string> const& values) |
| 1090 | { |
| 1091 | Json::Value jsonArray = Json::arrayValue; |
| 1092 | for (auto const& it : values) { |
| 1093 | Json::Value measurement = Json::objectValue; |
| 1094 | measurement["measurement"] = it.first; |
| 1095 | measurement["value"] = it.second; |
| 1096 | jsonArray.append(measurement); |
| 1097 | } |
| 1098 | return jsonArray; |
| 1099 | } |
| 1100 | |
| 1101 | static Json::Value DumpTimeoutAfterMatch( |
| 1102 | cmCTestTestHandler::cmCTestTestProperties& testProperties) |
no test coverage detected
searching dependent graphs…