Searched refs:Nullary (Results 1 - 5 of 5) sorted by relevance

/gem5/ext/googletest/googlemock/test/
H A Dgmock-generated-internal-utils_test.cc74 TEST(FunctionTest, Nullary) {
H A Dgmock-generated-function-mockers_test.cc81 virtual int Nullary() = 0;
130 MOCK_METHOD0(Nullary, int()); // NOLINT
198 EXPECT_CALL(mock_foo_, Nullary())
202 EXPECT_EQ(0, foo_->Nullary());
203 EXPECT_EQ(1, foo_->Nullary());
H A Dgmock-more-actions_test.cc76 int Nullary() { return 1; } function in namespace:testing::gmock_more_actions_test
184 int Nullary() const { return value_; } function in class:testing::gmock_more_actions_test::Foo
234 TEST(InvokeTest, Nullary) {
235 Action<int()> a = Invoke(Nullary); // NOLINT
366 TEST(InvokeMethodTest, Nullary) {
368 Action<int()> a = Invoke(&foo, &Foo::Nullary); // NOLINT
476 Action<int(int n)> a = WithoutArgs(Invoke(Nullary)); // NOLINT
H A Dgmock-actions_test.cc1100 int Nullary() { return 1; } function in namespace:__anon14
1119 int Nullary() const { return value_; } function in class:__anon14::Foo
1128 Action<int(int)> a = InvokeWithoutArgs(Nullary); // NOLINT
1132 Action<int(int, double)> a2 = InvokeWithoutArgs(Nullary); // NOLINT
1164 InvokeWithoutArgs(&foo, &Foo::Nullary);
H A Dgmock-generated-actions_test.cc71 int Nullary() { return 1; } function in namespace:testing::gmock_generated_actions_test
172 EXPECT_EQ(1, a.Perform(make_tuple(2, &Nullary)));

Completed in 22 milliseconds