| 29 | { |
| 30 | protected: |
| 31 | void SetUp() override |
| 32 | { |
| 33 | plugin_path_ = BT_PLUGIN_ISSUE953_PATH; |
| 34 | |
| 35 | if(!std::filesystem::exists(plugin_path_)) |
| 36 | { |
| 37 | GTEST_SKIP() << "Plugin not found at: " << plugin_path_ << ". " |
| 38 | << "Make sure it's built before running this test."; |
| 39 | } |
| 40 | } |
| 41 | |
| 42 | std::string plugin_path_; |
| 43 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected