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/SPStringAdditionsTests.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/SPStringAdditionsTests.m')
-rw-r--r-- | UnitTests/SPStringAdditionsTests.m | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/UnitTests/SPStringAdditionsTests.m b/UnitTests/SPStringAdditionsTests.m index f455066f..b0528ec7 100644 --- a/UnitTests/SPStringAdditionsTests.m +++ b/UnitTests/SPStringAdditionsTests.m @@ -28,10 +28,20 @@ // // More info at <https://github.com/sequelpro/sequelpro> -#import "SPStringAdditionsTests.h" #import "SPStringAdditions.h" #import "RegexKitLite.h" +#import <SenTestingKit/SenTestingKit.h> + +@interface SPStringAdditionsTests : SenTestCase + +- (void)testStringByRemovingCharactersInSet; +- (void)testStringWithNewUUID; +- (void)testCreateViewSyntaxPrettifier; +- (void)testNonConsecutivelySearchStringMatchingRanges; + +@end + @implementation SPStringAdditionsTests /** |