| 292 | class PythonApiTest : public ::testing::Test { |
| 293 | protected: |
| 294 | PythonApiTest() { |
| 295 | OpRegistry::Global()->Export(false, &ops_); |
| 296 | const std::vector<string> multi_line_fields = {"description"}; |
| 297 | |
| 298 | Env* env = Env::Default(); |
| 299 | GetGoldenApiDefs(env, kPythonApiDefDir, &api_defs_map_); |
| 300 | } |
| 301 | OpList ops_; |
| 302 | std::unordered_map<string, ApiDef> api_defs_map_; |
| 303 | }; |
nothing calls this directly
no test coverage detected