Lines Matching refs:foundPaths
90 std::vector<fs::path> foundPaths; in TEST_F() local
91 auto ret = findFiles("non-exist", "", foundPaths); in TEST_F()
94 EXPECT_TRUE(foundPaths.empty()); in TEST_F()
99 std::vector<fs::path> foundPaths; in TEST_F() local
100 auto ret = findFiles(hwmonDir, R"(in\d+_input)", foundPaths); in TEST_F()
103 EXPECT_EQ(foundPaths.size(), 0U); in TEST_F()
108 std::vector<fs::path> foundPaths; in TEST_F() local
109 auto ret = findFiles(hwmonDir, R"(temp\d+_input)", foundPaths); in TEST_F()
112 EXPECT_EQ(foundPaths.size(), 2U); in TEST_F()
117 std::vector<fs::path> foundPaths; in TEST_F() local
120 foundPaths, 6); in TEST_F()
123 EXPECT_TRUE(foundPaths.empty()); in TEST_F()
128 std::vector<fs::path> foundPaths; in TEST_F() local
131 foundPaths, 6); in TEST_F()
133 EXPECT_EQ(foundPaths.size(), 1U); in TEST_F()
135 foundPaths.clear(); in TEST_F()
139 foundPaths, 6); in TEST_F()
141 EXPECT_EQ(foundPaths.size(), 3U); in TEST_F()
147 std::vector<fs::path> foundPaths; in TEST_F() local
148 auto ret = findFiles(p, R"(temp\d+_input)", foundPaths); in TEST_F()
151 EXPECT_EQ(foundPaths.size(), 2U); in TEST_F()
157 std::vector<fs::path> foundPaths; in TEST_F() local
160 foundPaths, 6); in TEST_F()
163 EXPECT_EQ(foundPaths.size(), 3U); in TEST_F()
168 std::vector<fs::path> foundPaths; in TEST_F() local
171 foundPaths, 5); in TEST_F()
173 EXPECT_EQ(foundPaths.size(), 1U); in TEST_F()
175 foundPaths.clear(); in TEST_F()
179 foundPaths, 5); in TEST_F()
181 EXPECT_EQ(foundPaths.size(), 3U); in TEST_F()