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.

25 lines
378 B

8 years ago
//
// 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