pointfreeco / swift-issue-reporting

Report issues in your application and library code as Xcode runtime warnings, breakpoints, assertions, and do so in a testable manner.
https://www.pointfree.co
MIT License
368 stars 60 forks source link

Expose Testing test identifier from test context #125

Closed stephencelis closed 1 week ago

stephencelis commented 2 weeks ago

It can be useful to distinguish between tests in addition to knowing the test context, so let's surface some of that data.

One example use case, preventing global state from bleeding between tests in our Dependencies library: https://github.com/pointfreeco/swift-dependencies/pull/269