Move the test code of MapKit into SDWebImageMapKitPlugin and Fix for Podfile

This commit is contained in:
DreamPiggy 2020-02-26 18:08:53 +08:00
parent 103701346d
commit b68f948b76
2 changed files with 1 additions and 16 deletions

View File

@ -11,6 +11,7 @@ def watch_example_pods
end
def all_test_pods
pod 'SDWebImage', :path => './'
pod 'Expecta'
pod 'KVOController'
end

View File

@ -53,22 +53,6 @@
}
#endif
- (void)testMKAnnotationViewSetImageWithURL {
XCTestExpectation *expectation = [self expectationWithDescription:@"MKAnnotationView setImageWithURL"];
MKAnnotationView *annotationView = [[MKAnnotationView alloc] init];
NSURL *originalImageURL = [NSURL URLWithString:kTestJPEGURL];
[annotationView sd_setImageWithURL:originalImageURL
completed:^(UIImage * _Nullable image, NSError * _Nullable error, SDImageCacheType cacheType, NSURL * _Nullable imageURL) {
expect(image).toNot.beNil();
expect(error).to.beNil();
expect(originalImageURL).to.equal(imageURL);
expect(annotationView.image).to.equal(image);
[expectation fulfill];
}];
[self waitForExpectationsWithCommonTimeout];
}
#if SD_UIKIT
- (void)testUIButtonSetImageWithURLNormalState {
XCTestExpectation *expectation = [self expectationWithDescription:@"UIButton setImageWithURL normalState"];