David Furman
David Furman
This updates the library to support Swift Package Manager. To do this, I rearranged files in accordance with the [traditional Swift Package Manager structure](https://developer.apple.com/documentation/xcode/creating_a_standalone_swift_package_with_xcode): _Source files reside in a folder...
This addresses the issue here: https://github.com/pointfreeco/swift-snapshot-testing/issues/429 This allows users to disable the default behavior of snapshot creation, where a counter is added whenever a test doesn't specify a test name....
This addresses the issue here: https://github.com/pointfreeco/swift-snapshot-testing/issues/429 This allows users to disable the default behavior of snapshot creation, where a counter is added whenever a test doesn't specify a test name....
Today, the following code ```swift @Spyable protocol ServiceProtocol { func foo() -> T } ``` will produce Spy that doesn't compile ```swift class ServiceProtocolSpy: ServiceProtocol { var fooCallsCount = 0...