mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-30 01:11:46 +00:00
21 lines
428 B
Objective-C
21 lines
428 B
Objective-C
//
|
|
// OCHamcrest - HCSubstringMatcher.h
|
|
// Copyright 2013 hamcrest.org. See LICENSE.txt
|
|
//
|
|
// Created by: Jon Reid, http://qualitycoding.org/
|
|
// Docs: http://hamcrest.github.com/OCHamcrest/
|
|
// Source: https://github.com/hamcrest/OCHamcrest
|
|
//
|
|
|
|
#import <OCHamcrestIOS/HCBaseMatcher.h>
|
|
|
|
|
|
@interface HCSubstringMatcher : HCBaseMatcher
|
|
{
|
|
NSString *substring;
|
|
}
|
|
|
|
- (instancetype)initWithSubstring:(NSString *)aString;
|
|
|
|
@end
|