Lines Matching refs:strings
249 std::set< std::string > strings; in ATF_TEST_CASE_BODY() local
250 strings.insert("First"); in ATF_TEST_CASE_BODY()
251 strings.insert("Second"); in ATF_TEST_CASE_BODY()
253 ATF_REQUIRE( atf::utils::grep_collection("irs", strings)); in ATF_TEST_CASE_BODY()
254 ATF_REQUIRE( atf::utils::grep_collection("cond", strings)); in ATF_TEST_CASE_BODY()
255 ATF_REQUIRE(!atf::utils::grep_collection("Third", strings)); in ATF_TEST_CASE_BODY()
261 std::vector< std::string > strings; in ATF_TEST_CASE_BODY() local
262 strings.push_back("First"); in ATF_TEST_CASE_BODY()
263 strings.push_back("Second"); in ATF_TEST_CASE_BODY()
265 ATF_REQUIRE( atf::utils::grep_collection("irs", strings)); in ATF_TEST_CASE_BODY()
266 ATF_REQUIRE( atf::utils::grep_collection("cond", strings)); in ATF_TEST_CASE_BODY()
267 ATF_REQUIRE(!atf::utils::grep_collection("Third", strings)); in ATF_TEST_CASE_BODY()