| 101 | } |
| 102 | |
| 103 | void |
| 104 | BaseTest::SetUp() |
| 105 | { |
| 106 | const char* path = std::getenv("OFX_PLUGIN_PATH"); |
| 107 | if (path) { |
| 108 | std::cout << "Warning: Ignoring standard plugin path, OFX_PLUGIN_PATH=" << path << std::endl; |
| 109 | OFX::Host::PluginCache::useStdOFXPluginsLocation(false); |
| 110 | } |
| 111 | |
| 112 | _app = appPTR->getTopLevelInstance(); |
| 113 | registerTestPlugins(); |
| 114 | } |
| 115 | |
| 116 | void |
| 117 | BaseTest::TearDown() |
nothing calls this directly
no test coverage detected