Open
Description
Motivation
withKnownIssue
provides granularity, but does not offer a great user experience when the intent is to express an expected failure of a test function because it requires you to modify the entire body, resulting in (much) larger changes/diffs than necessary.
Proposed solution
E.g. a new defaulted parameter for the Test
macros. Could simply be a boolean; a more prudent design, I believe, would be to have it accept an enum along the lines of
enum ArgumentsWithKnownIssue<C: Collection> {
case none, all
case arguments(C)
}
Alternatives considered
No response
Additional information
No response