Home
last modified time | relevance | path

Searched refs:entryID2 (Results 1 – 1 of 1) sorted by relevance

/openbmc/bmcweb/test/redfish-core/include/
H A Devent_log_test.cpp38 std::string entryID2; in TEST() local
43 success = getUniqueEntryID(example, entryID2); in TEST()
48 ASSERT_TRUE(entryID2.contains("_")); in TEST()
51 ASSERT_THAT(entryID2, testing::MatchesRegex("^[0-9]+_[0-9]+$")); in TEST()
57 std::string entryID2; in TEST() local
62 getUniqueEntryID(example, entryID2); in TEST()
65 const size_t index = entryID2.find('_'); in TEST()
69 const long n1 = std::stol(entryID2.substr(index + 1)); in TEST()