| 38 | }; |
| 39 | |
| 40 | class IndexerTest : public ::testing::TestWithParam<TestDataMap> { |
| 41 | protected: |
| 42 | virtual void SetUp(); |
| 43 | virtual void TearDown(); |
| 44 | bool DoIndexing(std::string); |
| 45 | |
| 46 | FFMS_Indexer* indexer; |
| 47 | FFMS_Index* index; |
| 48 | int video_track_idx; |
| 49 | FFMS_VideoSource* video_source; |
| 50 | const FFMS_VideoProperties* VP; |
| 51 | |
| 52 | FFMS_ErrorInfo E; |
| 53 | char ErrorMsg[1024]; |
| 54 | |
| 55 | std::string SamplesDir; |
| 56 | }; |
| 57 | |
| 58 | void IndexerTest::SetUp() { |
| 59 | indexer = nullptr; |
nothing calls this directly
no outgoing calls
no test coverage detected