Searched refs:MyType (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/googletest/googletest/test/ |
H A D | googletest-list-tests-unittest_.cc | 69 class MyType { class 71 explicit MyType(const std::string& a_value) : value_(a_value) {} in MyType() function in MyType 80 void PrintTo(const MyType& x, std::ostream* os) { *os << x.value(); } in PrintTo() 82 class ValueParamTest : public testing::TestWithParam<MyType> {}; 91 MyType("one line"), MyType("two\nlines"), 92 MyType("a "
|
H A D | gtest_unittest.cc | 567 struct MyType {}; struct 568 inline bool operator==(MyType const&, MyType const&) { return true; } in operator ==() 576 EXPECT_EQ(ConvertToAll{}, MyType{}); in TEST() 577 EXPECT_EQ(ConvertToAllButNoPointers{}, MyType{}); in TEST()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/ |
H A D | IPDBEnumChildren.h | 23 using MyType = IPDBEnumChildren<ChildType>; variable
|
/freebsd/contrib/googletest/googlemock/test/ |
H A D | gmock-matchers-comparisons_test.cc | 1640 struct MyType { in TEST() struct 1644 EXPECT_THAT((MyType{17, "foo"}), FieldsAre(Eq(17), HasSubstr("oo"))); in TEST()
|
/freebsd/contrib/googletest/docs/ |
H A D | advanced.md | 1252 enum class MyType { MY_FOO = 0, MY_BAR = 1 }; 1254 class MyTestSuite : public testing::TestWithParam<std::tuple<MyType, std::string>> { 1260 testing::Values(MyType::MY_FOO, MyType::MY_BAR), 1264 std::get<0>(info.param) == MyType::MY_FOO ? "Foo" : "Bar",
|