Home | History | Annotate | Download | only in gtest

Lines Matching full:statement

195 // statement will cause exactly one fatal Google Test failure with 'substr'
200 // 'statement' throws an exception.
203 // - 'statement' cannot reference local non-static variables or
205 // - 'statement' cannot return a value.
207 #define EXPECT_FATAL_FAILURE(statement, substr) do {\
210 static void Execute() { statement; }\
224 // statement will cause exactly one non-fatal Google Test failure with
227 // 'statement' is allowed to reference local variables and members of
232 // 'statement' throws an exception or aborts the function.
236 #define EXPECT_NONFATAL_FAILURE(statement, substr) do {\
243 statement;\