This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// PublisherTestSupport.swift | |
// | |
// Created by Andreas Günther on 29.09.25. | |
// | |
import Combine | |
import Foundation | |
enum AwaitPublisherError: Error, CustomStringConvertible { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Combine | |
protocol Suspendable { | |
var isSuspended: Bool { get } | |
func suspend() | |
func `continue`() | |
} |