// // NotImplementedStubs.swift // RxExample // // Created by Krunoslav Zaher on 12/29/15. // Copyright © 2015 Krunoslav Zaher. All rights reserved. // import Foundation import RxSwift import RxTests // MARK: Generic support code // MARK: Not implemented stubs func notImplemented() -> (T1) -> Observable { return { _ in fatalError() return Observable.empty() } } func notImplementedSync() -> (T1) -> Void { return { _ in fatalError() } }