Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Instance Methods | List of all members
PlatformViewWithContinuousTexture Class Reference
Inheritance diagram for PlatformViewWithContinuousTexture:

Instance Methods

(void) - setUp [implementation]
 
(void) - testPlatformViewWithContinuousTexture [implementation]
 

Detailed Description

Definition at line 428 of file PlatformViewUITests.m.

Method Documentation

◆ setUp

- (void) setUp
implementation

Definition at line 7 of file PlatformViewUITests.m.

434 {
435 self.continueAfterFailure = NO;
436}

◆ testPlatformViewWithContinuousTexture

- (void) testPlatformViewWithContinuousTexture
implementation

Definition at line 7 of file PlatformViewUITests.m.

438 {
439 XCUIApplication* app = [[XCUIApplication alloc] init];
440 app.launchArguments =
441 @[ @"--platform-view-with-continuous-texture", @"--with-continuous-texture" ];
442 [app launch];
443
444 XCUIElement* platformView = app.textViews.firstMatch;
445 BOOL exists = [platformView waitForExistenceWithTimeout:kSecondsToWaitForPlatformView];
446 if (!exists) {
447 XCTFail(@"It took longer than %@ second to find the platform view."
448 @"There might be issues with the platform view's construction,"
449 @"or with how the scenario is built.",
451 }
452
453 XCTAssertNotNil(platformView);
454}
static const NSInteger kSecondsToWaitForPlatformView
int BOOL

The documentation for this class was generated from the following file: