Files
NetNewsWire/Modules/Account/Tests/AccountTests/Feedly/TestGetStreamIdsService.swift
2024-07-06 21:07:05 -07:00

30 lines
978 B
Swift

//
// TestGetStreadIDsService.swift
// AccountTests
//
// Created by Kiel Gillard on 29/10/19.
// Copyright © 2019 Ranchero Software, LLC. All rights reserved.
//
import XCTest
@testable import Account
//final class TestGetStreadIDsService: FeedlyGetStreamIDsService {
//
// var mockResult: Result<FeedlyStreamIDs, Error>?
// var parameterTester: ((FeedlyResourceID, String?, Date?, Bool?) -> ())?
// var getStreadIDsExpectation: XCTestExpectation?
//
// func getStreamIDs(for resource: FeedlyResourceID, continuation: String?, newerThan: Date?, unreadOnly: Bool?, completion: @escaping (Result<FeedlyStreamIDs, Error>) -> ()) {
// guard let result = mockResult else {
// XCTFail("Missing mock result. Test may time out because the completion will not be called.")
// return
// }
// parameterTester?(resource, continuation, newerThan, unreadOnly)
// DispatchQueue.main.async {
// completion(result)
// self.getStreadIDsExpectation?.fulfill()
// }
// }
//}