|
| MOCK_METHOD (void, func1,(),(noexcept)) |
|
| MOCK_METHOD (void, func2,(),(noexcept(true))) |
|
| MOCK_METHOD (void, func3,(),(noexcept(false))) |
|
| MOCK_METHOD (void, func4,(),(noexcept(noexcept(MaybeThrows())))) |
|
| MOCK_METHOD (void, func5,(),(noexcept(noexcept(DoesntThrow())))) |
|
| MOCK_METHOD (void, func6,(),(noexcept(noexcept(DoesntThrow())), const)) |
|
| MOCK_METHOD (void, func7,(),(const, noexcept(noexcept(DoesntThrow())))) |
|
| MOCK_METHOD (void, func8,(),(noexcept(noexcept(hasTwoParams(1, 2))), const)) |
|
testing::gmock_function_mocker_test::MockMethodNoexceptSpecifier::MOCK_METHOD |
( |
void |
, |
|
|
func1 |
, |
|
|
() |
, |
|
|
(noexcept) |
|
|
) |
| |
testing::gmock_function_mocker_test::MockMethodNoexceptSpecifier::MOCK_METHOD |
( |
void |
, |
|
|
func2 |
, |
|
|
() |
, |
|
|
(noexcept(true)) |
|
|
) |
| |
testing::gmock_function_mocker_test::MockMethodNoexceptSpecifier::MOCK_METHOD |
( |
void |
, |
|
|
func3 |
, |
|
|
() |
, |
|
|
(noexcept(false)) |
|
|
) |
| |
testing::gmock_function_mocker_test::MockMethodNoexceptSpecifier::MOCK_METHOD |
( |
void |
, |
|
|
func4 |
, |
|
|
() |
, |
|
|
(noexcept(noexcept(MaybeThrows()))) |
|
|
) |
| |
testing::gmock_function_mocker_test::MockMethodNoexceptSpecifier::MOCK_METHOD |
( |
void |
, |
|
|
func5 |
, |
|
|
() |
, |
|
|
(noexcept(noexcept(DoesntThrow()))) |
|
|
) |
| |
testing::gmock_function_mocker_test::MockMethodNoexceptSpecifier::MOCK_METHOD |
( |
void |
, |
|
|
func6 |
, |
|
|
() |
, |
|
|
(noexcept(noexcept(DoesntThrow())), const) |
|
|
) |
| |
testing::gmock_function_mocker_test::MockMethodNoexceptSpecifier::MOCK_METHOD |
( |
void |
, |
|
|
func7 |
, |
|
|
() |
, |
|
|
(const, noexcept(noexcept(DoesntThrow()))) |
|
|
) |
| |
testing::gmock_function_mocker_test::MockMethodNoexceptSpecifier::MOCK_METHOD |
( |
void |
, |
|
|
func8 |
, |
|
|
() |
, |
|
|
(noexcept(noexcept(hasTwoParams(1, 2))), const) |
|
|
) |
| |
The documentation for this struct was generated from the following file: