diff options
author | Max <post@wickenrode.com> | 2015-03-16 21:57:22 +0100 |
---|---|---|
committer | Max <post@wickenrode.com> | 2015-03-16 21:57:22 +0100 |
commit | 73919a3bc0b80ee45c284045dbeac47846331bff (patch) | |
tree | e8a96da9738187c29f2569fdd82fd6a8bb36befc /UnitTests/SPDatabaseCopyTest.m | |
parent | 0dc8d023f39c1bd03f51e62d90b6be7693955e53 (diff) | |
download | sequelpro-73919a3bc0b80ee45c284045dbeac47846331bff.tar.gz sequelpro-73919a3bc0b80ee45c284045dbeac47846331bff.tar.bz2 sequelpro-73919a3bc0b80ee45c284045dbeac47846331bff.zip |
Remove .h files for unit tests
There is really no point in having them as unit tests don't have an interface someone would want to #import. (and they are disabled right now anyway ;))
Diffstat (limited to 'UnitTests/SPDatabaseCopyTest.m')
-rw-r--r-- | UnitTests/SPDatabaseCopyTest.m | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/UnitTests/SPDatabaseCopyTest.m b/UnitTests/SPDatabaseCopyTest.m index 2ab44bea..036a1869 100644 --- a/UnitTests/SPDatabaseCopyTest.m +++ b/UnitTests/SPDatabaseCopyTest.m @@ -28,14 +28,23 @@ // // More info at <https://github.com/sequelpro/sequelpro> +#define USE_APPLICATION_UNIT_TEST 1 + #import <OCMock/OCMock.h> +#import <SenTestingKit/SenTestingKit.h> #import "SPAlertSheets.h" -#import "SPDatabaseCopyTest.h" #import "SPDatabaseCopy.h" #import "SPTableCopy.h" #import "SPLogger.h" +@interface SPDatabaseCopyTest : SenTestCase + +- (void)testCopyDatabase; +- (void)testCreateDatabase; + +@end + @implementation SPDatabaseCopyTest - (SPDatabaseCopy *)getDatabaseCopyFixture |