Adding Autotype delay test case

This commit is contained in:
michael starke
2015-12-31 10:39:04 +01:00
parent f34d071b73
commit 06d24f4870
2 changed files with 43 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
//
// MPTestAutotypeDelay.m
// MacPass
//
// Created by Michael Starke on 28/12/15.
// Copyright © 2015 HicknHack Software GmbH. All rights reserved.
//
#import <XCTest/XCTest.h>
@interface MPTestAutotypeDelay : XCTestCase
@end
@implementation MPTestAutotypeDelay
- (void)setUp {
[super setUp];
// Put setup code here. This method is called before the invocation of each test method in the class.
}
- (void)tearDown {
// Put teardown code here. This method is called after the invocation of each test method in the class.
[super tearDown];
}
- (void)testExample {
// This is an example of a functional test case.
// Use XCTAssert and related functions to verify your tests produce the correct results.
}
- (void)testPerformanceExample {
// This is an example of a performance test case.
[self measureBlock:^{
// Put the code you want to measure the time of here.
}];
}
@end