Flutter Engine
The Flutter Engine
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
Functions
FlutterTestUtils.h File Reference
#import <Foundation/Foundation.h>

Go to the source code of this file.

Functions

BOOL FLTThrowsObjcException (dispatch_block_t block)
 Returns YES if the block throws an exception. More...
 

Function Documentation

◆ FLTThrowsObjcException()

BOOL FLTThrowsObjcException ( dispatch_block_t  block)

Returns YES if the block throws an exception.

Definition at line 11 of file FlutterTestUtils.mm.

11 {
12 @try {
13 block();
14 } @catch (...) {
15 return YES;
16 }
17 return NO;
18}