| 150 | class LibraryConfigTest : public testing::Test { |
| 151 | protected: |
| 152 | void SetUp() override { |
| 153 | env_.RegisterCompilerLibrary("testlib", "ml", 1, |
| 154 | []() { return TestLibrary(1); }); |
| 155 | env_.RegisterCompilerLibrary("testlib", "ml", 2, |
| 156 | []() { return TestLibrary(2); }); |
| 157 | env_.SetDescriptorPool(internal::GetSharedTestingDescriptorPool()); |
| 158 | } |
| 159 | |
| 160 | Env env_; |
| 161 | }; |
nothing calls this directly
no test coverage detected