1// 2// ScenariosTests.m 3// ScenariosTests 4// 5// Created by Dan Field on 7/20/19. 6// Copyright © 2019 flutter. All rights reserved. 7// 8 9#import <XCTest/XCTest.h> 10 11@interface ScenariosTests : XCTestCase 12 13@end 14 15@implementation ScenariosTests 16 17- (void)setUp { 18 // Put setup code here. This method is called before the invocation of each test method in the 19 // class. 20} 21 22- (void)tearDown { 23 // Put teardown code here. This method is called after the invocation of each test method in the 24 // class. 25} 26 27- (void)testExample { 28 // This is an example of a functional test case. 29 // Use XCTAssert and related functions to verify your tests produce the correct results. 30} 31 32- (void)testPerformanceExample { 33 // This is an example of a performance test case. 34 [self measureBlock:^{ 35 // Put the code you want to measure the time of here. 36 }]; 37} 38 39@end 40