| 93 | } |
| 94 | |
| 95 | TEST_P(IndexerTest, ValidateFrameCount) { |
| 96 | TestDataMap P = GetParam(); |
| 97 | std::string FilePath = SamplesDir + "/" + P.Filename; |
| 98 | |
| 99 | ASSERT_TRUE(DoIndexing(FilePath)); |
| 100 | |
| 101 | ASSERT_EQ(P.TestDataLen, VP->NumFrames); |
| 102 | } |
| 103 | |
| 104 | TEST_P(IndexerTest, ReverseAccessingFrame) { |
| 105 | TestDataMap P = GetParam(); |
nothing calls this directly
no test coverage detected