| 10 | struct FileHandlerParentDirectoryTest: testing::TestWithParam<std::tuple<std::string, std::string>> {}; |
| 11 | |
| 12 | TEST_P(FileHandlerParentDirectoryTest, Run) { |
| 13 | auto [input, expected] = GetParam(); |
| 14 | EXPECT_EQ(file_handler::get_parent_directory(input), expected); |
| 15 | } |
| 16 | |
| 17 | INSTANTIATE_TEST_SUITE_P( |
| 18 | FileHandlerTests, |
nothing calls this directly
no test coverage detected