This commit is contained in:
Vadim Bulavin 2017-11-08 18:26:06 +02:00
Родитель 793a162867
Коммит 73437c3404
3 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -52,7 +52,7 @@ private class FeedModulePresenterMock: FeedModuleInteractorOutput {
func didStartFetching() { }
func didFinishFetching() { }
func didFinishFetching(with error: Error?) { }
func didPostAction(post: PostHandle, action: PostSocialAction, error: Error?) {
didPostAction = (post, action, error)

Просмотреть файл

@ -26,7 +26,7 @@ private class FeedModulePresenterMock: FeedModuleInteractorOutput {
startedFetching = true
}
func didFinishFetching() {
func didFinishFetching(with error: Error?) {
finishedFetching = true
}

Просмотреть файл

@ -100,7 +100,7 @@ class FeedModulePresenter_Tests: XCTestCase {
view.setRefreshing_state_ReceivedState = true
// when
sut.didFinishFetching()
sut.didFinishFetching(with: nil)
// then
XCTAssertTrue(view.setRefreshing_state_ReceivedState == false)