forked from mykeepass/KeePassLib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAESTests.h
More file actions
22 lines (16 loc) · 667 Bytes
/
Copy pathAESTests.h
File metadata and controls
22 lines (16 loc) · 667 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
// AESTests.h
// KeePass2
//
// Created by Qiang Yu on 2/21/10.
// Copyright 2010 Qiang Yu. All rights reserved.
//
// See Also: http://developer.apple.com/iphone/library/documentation/Xcode/Conceptual/iphone_development/135-Unit_Testing_Applications/unit_testing_applications.html
// Application unit tests contain unit test code that must be injected into an application to run correctly.
// Define USE_APPLICATION_UNIT_TEST to 0 if the unit test code is designed to be linked into an independent test executable.
#import <SenTestingKit/SenTestingKit.h>
#import <UIKit/UIKit.h>
@interface AESTests : SenTestCase {
}
- (void) test;
@end