mirror of
https://github.com/google/googletest.git
synced 2025-04-05 13:35:03 +00:00
Edited wiki page through web user interface.
This commit is contained in:
parent
0d0a10453f
commit
10b40fec5b
1 changed files with 22 additions and 22 deletions
|
@ -45,28 +45,6 @@ switch(expression) {
|
|||
|
||||
_Availability_: Linux, Windows, Mac.
|
||||
|
||||
=== Windows HRESULT assertions ===
|
||||
|
||||
These assertions test for `HRESULT` success or failure.
|
||||
|
||||
|| *Fatal assertion* || *Nonfatal assertion* || *Verifies* ||
|
||||
|| `ASSERT_HRESULT_SUCCEEDED(`_expression_`);` || `EXPECT_HRESULT_SUCCEEDED(`_expression_`);` || _expression_ is a success `HRESULT` ||
|
||||
|| `ASSERT_HRESULT_FAILED(`_expression_`);` || `EXPECT_HRESULT_FAILED(`_expression_`);` || _expression_ is a failure `HRESULT` ||
|
||||
|
||||
The generated output contains the human-readable error message
|
||||
associated with the `HRESULT` code returned by _expression_.
|
||||
|
||||
You might use them like this:
|
||||
|
||||
{{{
|
||||
CComPtr shell;
|
||||
ASSERT_HRESULT_SUCCEEDED(shell.CoCreateInstance(L"Shell.Application"));
|
||||
CComVariant empty;
|
||||
ASSERT_HRESULT_SUCCEEDED(shell->ShellExecute(CComBSTR(url), empty, empty, empty, empty));
|
||||
}}}
|
||||
|
||||
_Availability_: Windows.
|
||||
|
||||
=== Predicate Assertions ===
|
||||
|
||||
Even though Google Test has a rich set of assertions, they can never be
|
||||
|
@ -239,6 +217,28 @@ replace `EXPECT_PRED_FORMAT2` in the above table with `ASSERT_PRED_FORMAT2`.
|
|||
|
||||
_Availability_: Linux, Windows, Mac.
|
||||
|
||||
=== Windows HRESULT assertions ===
|
||||
|
||||
These assertions test for `HRESULT` success or failure.
|
||||
|
||||
|| *Fatal assertion* || *Nonfatal assertion* || *Verifies* ||
|
||||
|| `ASSERT_HRESULT_SUCCEEDED(`_expression_`);` || `EXPECT_HRESULT_SUCCEEDED(`_expression_`);` || _expression_ is a success `HRESULT` ||
|
||||
|| `ASSERT_HRESULT_FAILED(`_expression_`);` || `EXPECT_HRESULT_FAILED(`_expression_`);` || _expression_ is a failure `HRESULT` ||
|
||||
|
||||
The generated output contains the human-readable error message
|
||||
associated with the `HRESULT` code returned by _expression_.
|
||||
|
||||
You might use them like this:
|
||||
|
||||
{{{
|
||||
CComPtr shell;
|
||||
ASSERT_HRESULT_SUCCEEDED(shell.CoCreateInstance(L"Shell.Application"));
|
||||
CComVariant empty;
|
||||
ASSERT_HRESULT_SUCCEEDED(shell->ShellExecute(CComBSTR(url), empty, empty, empty, empty));
|
||||
}}}
|
||||
|
||||
_Availability_: Windows.
|
||||
|
||||
=== Assertion Placement ===
|
||||
|
||||
You can include assertions in any C++ function's code. The one constraint is
|
||||
|
|
Loading…
Add table
Reference in a new issue