-
Notifications
You must be signed in to change notification settings - Fork 78
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
Support of NUnit3 #83
Conversation
Here I need a help to migrate two custom constrains |
Based on NUnit3 source code I propose the following migration of the custom constraints. - We should add tests to prove the WriteDescriptionTo method migration is doing what is intended. - The F#-friendly formatting has been partially merged. We need to decide if the EqualConstraintResult class is good enough or if we inherit it and make it F#-friendly.
@sergey-tihon There is a PR (sergey-tihon#1) on your forked repository.
|
[WIP] Support of NUnit3
@et1975 where did you found info about pluggable formatters in NUnit? |
If you look between NUnit3 and NUnit2 for the XmlSerializableConstraint class you will see the actual value is no longer displayed/printed. It seems it is now handled by the ConstraintResult class. |
Coool! Thank you @et1975 |
#82