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/SPTableCopyTest.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/SPTableCopyTest.m')
-rw-r--r-- | UnitTests/SPTableCopyTest.m | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/UnitTests/SPTableCopyTest.m b/UnitTests/SPTableCopyTest.m index 099066bc..76a2fe45 100644 --- a/UnitTests/SPTableCopyTest.m +++ b/UnitTests/SPTableCopyTest.m @@ -29,10 +29,18 @@ // More info at <https://github.com/sequelpro/sequelpro> #import "SPTableCopy.h" -#import "SPTableCopyTest.h" +#import <SPMySQL/SPMySQL.h> +#import <SenTestingKit/SenTestingKit.h> #import <OCMock/OCMock.h> -#import <SPMySQL/SPMySQL.h> + +#define USE_APPLICATION_UNIT_TEST 1 + +@interface SPTableCopyTest : SenTestCase + +- (void)testCopyTableFromToWithData; + +@end @implementation SPTableCopyTest |