| 1131 | } |
| 1132 | |
| 1133 | static Json::Value DumpCTestProperty(std::string const& name, |
| 1134 | Json::Value value) |
| 1135 | { |
| 1136 | Json::Value property = Json::objectValue; |
| 1137 | property["name"] = name; |
| 1138 | property["value"] = std::move(value); |
| 1139 | return property; |
| 1140 | } |
| 1141 | |
| 1142 | static Json::Value DumpCTestProperties( |
| 1143 | cmCTestTestHandler::cmCTestTestProperties& testProperties) |
no test coverage detected
searching dependent graphs…