5#import <Flutter/Flutter.h>
6#import <XCTest/XCTest.h>
17- (void)testFontRenderingWhenSuppliedWithBogusFont {
18 self.continueAfterFailure = NO;
20 XCUIApplication* application = [[XCUIApplication alloc] init];
21 application.launchArguments = @[ @"--bogus-font-text" ];
24 XCUIElement* addTextField = application.textFields[@"ready"];
25 XCTAssertTrue([addTextField waitForExistenceWithTimeout:30]);
28 [manager checkGoldenForTest:self rmesThreshold:kDefaultRmseThreshold];