-
Notifications
You must be signed in to change notification settings - Fork 728
Introduces an attribute to mark an entire assembly as one that contains custom assertions. #2389
New issue
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
Introduces an attribute to mark an entire assembly as one that contains custom assertions. #2389
Conversation
1f42c6f
to
96ba54a
Compare
Qodana for .NETIt seems all right 👌 No new problems were found according to the checks applied 💡 Qodana analysis was run in the pull request mode: only the changed files were checked View the detailed Qodana reportTo be able to view the detailed Qodana report, you can either:
To get - name: 'Qodana Scan'
uses: JetBrains/[email protected]
with:
upload-result: true Contact Qodana teamContact us at [email protected]
|
96ba54a
to
4a87d62
Compare
Pull Request Test Coverage Report for Build 6526061737
💛 - Coveralls |
4a87d62
to
2ce50ca
Compare
2e22021
to
b2ae129
Compare
…as one that contains custom assertions.
b2ae129
to
cd6bb2a
Compare
Instead of marking individual methods with the
[CustomAssertion]
, you can now add the[assembly: CustomAssertionsAssembly]
attribute to a file within the project to tell Fluent Assertions that all code in that assembly should be treated as custom assertion code.Part of the solution to resolve #2002