-
-
Notifications
You must be signed in to change notification settings - Fork 64
Add Checking Information to Statistics Report #87
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
Comments
Seems fair. PS: Feel free to suggest other type of mark. My mind is seeing ascii color as background in case that tests are run from supported console, but I think that there are no support for detecting such case in junit. Have a look at maven as an example. |
Why not? Using assertions (Consumer) or a predicate looks equivalent to me. |
My (initial) view is that when I am using Consumer, I am not able to "not fulfill check". It can be used for example for some legal issues, as consuming actual count of tries and saving it to database (or sending it by email) as an evidence that test has been done given number of times. This does not involve any sort of check. Just saving some information. Predicate on the other hand, does directly influence result of "being checked". It does actually return boolean value of check result. i.e. I feel that mark "#checked..." should be shown only on statistics lines, which have been checked by some PS: My view is now forked, because after some reasoning... If info about marking given statistics as "#checked..." is placed in javadoc also for |
Testing Problem
Discussing #75 resulted in the following idea by @luvarqpp
Solution Idea
Having the exact checking code is probably not possible (or only with large effort) but a simple
would be.
The text was updated successfully, but these errors were encountered: