SwiftCov icon indicating copy to clipboard operation
SwiftCov copied to clipboard

A tool to generate test code coverage information for Swift.

Results 14 SwiftCov issues
Sort by recently updated
recently updated
newest added

``` > carthage update > make ``` As a result, `make` was failed because Xcode could not locate `Box.framework`. Thank you.

By parsing xcodebuild output, we should be able to detect which swift files are compiled for the module being tested. SourceKitten does this. This would avoid the basic `file.endswith('.swift') and...

enhancement

Tests are currently run twice: both before and after setting breakpoints. We could perhaps use xcodebuild's `-dry-run` argument, or a test scheme could be passed in instead of xcodebuild parameters,...

enhancement

We could use SourceKittenFramework to avoid setting breakpoints on lines with no reachable code (whitespace, comment, type declaration).

enhancement