| 143 | } |
| 144 | |
| 145 | TEST(Json, TestParseObject) { |
| 146 | std::string str = R"obj({"TreeParam" : {"num_feature": "10"}})obj"; |
| 147 | auto json = Json::Load(StringView{str.c_str(), str.size()}); |
| 148 | } |
| 149 | |
| 150 | TEST(Json, ParseNumber) { |
| 151 | { |
nothing calls this directly
no test coverage detected