You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
378 B
24 lines
378 B
// |
|
// FMDBTempDBTests.h |
|
// fmdb |
|
// |
|
// Created by Graham Dennis on 24/11/2013. |
|
// |
|
// |
|
|
|
#import <XCTest/XCTest.h> |
|
#import "FMDatabase.h" |
|
|
|
@protocol FMDBTempDBTests <NSObject> |
|
|
|
@optional |
|
+ (void)populateDatabase:(FMDatabase *)database; |
|
|
|
@end |
|
|
|
@interface FMDBTempDBTests : XCTestCase <FMDBTempDBTests> |
|
|
|
@property FMDatabase *db; |
|
@property (readonly) NSString *databasePath; |
|
|
|
@end
|
|
|