// Copyright 2014 The Flutter Authors. All rights reserved.// Use of this source code is governed by a BSD-style license that can be// found in the LICENSE file.#import <XCTest/XCTest.h>@interfaceGalleryUITests:XCTestCase@end@implementationGalleryUITests-(void)setUp{self.continueAfterFailure=NO;}-(void)testLaunch{XCUIApplication*app=[[XCUIApplicationalloc]init];[applaunch];// Basic smoke test that the app launched and any element was loaded.XCTAssertTrue([app.otherElements.firstMatchwaitForExistenceWithTimeout:60.0]);}@end