We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For example, given the code:
@Rule @JvmField val approver = ApprovalsRule.usualRule()!! @Test fun reads_excluded_journal_ids_from_resources() { val contexts = HiddenContexts() val stableSet = contexts.journalSuggesterExcludedJournalIds.map { Integer.parseInt(it) }.toSortedSet() approver.assertApproved(stableSet.joinToString("\n")) }
Empty stableSet can never be approved because internally LazyOutputStream will not create .actual file and will compare empty stableSet to null.
stableSet
LazyOutputStream
.actual
null
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For example, given the code:
Empty
stableSet
can never be approved because internallyLazyOutputStream
will not create.actual
file and will compare emptystableSet
tonull
.The text was updated successfully, but these errors were encountered: