Searched refs:Unary (Results 1 - 4 of 4) sorted by relevance

/gem5/ext/googletest/googlemock/test/
H A Dgmock-generated-internal-utils_test.cc83 TEST(FunctionTest, Unary) {
H A Dgmock-generated-function-mockers_test.cc82 virtual bool Unary(int x) = 0;
133 MOCK_METHOD1(Unary, bool(int)); // NOLINT
208 EXPECT_CALL(mock_foo_, Unary(Eq(2)))
212 EXPECT_TRUE(foo_->Unary(2));
213 EXPECT_FALSE(foo_->Unary(2));
H A Dgmock-more-actions_test.cc91 bool Unary(int x) { return x < 0; } function in namespace:testing::gmock_more_actions_test
186 short Unary(long x) { return static_cast<short>(value_ + x); } // NOLINT function in class:testing::gmock_more_actions_test::Foo
240 TEST(InvokeTest, Unary) {
241 Action<bool(int)> a = Invoke(Unary); // NOLINT
373 TEST(InvokeMethodTest, Unary) {
375 Action<short(long)> a = Invoke(&foo, &Foo::Unary); // NOLINT
482 Action<bool(double x, int n)> b = WithArg<1>(Invoke(Unary)); // NOLINT
H A Dgmock-generated-actions_test.cc80 bool Unary(int x) { return x < 0; } function in namespace:testing::gmock_generated_actions_test
286 Action<bool(double x, int n)> a = WithArgs<1>(Invoke(Unary)); // NOLINT
1028 TEST(ReturnNewTest, Unary) {

Completed in 14 milliseconds