Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
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.
 

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}