Content of NUnit output format #5064
OsirisTerje
started this conversation in
General
Replies: 1 comment
-
|
The outcome of an NUnit test is modeled as resultstate+label+site. There are a finite set of resultstates and sites but label can be expanded indefinitely. So Skipped+Ignored+Child actually means "this node has result ignored because some child tests were ignored." The message could actually be generated by a report program without including it in the result file but some older report programs may not know how to do that. Messages like this in the result file could probably be phased out over time. I think to do that you would need to make a list of all known programs that use the result file. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I noticed that when we have a test that is ignored, that ends up in the log as marking every parent above with the fact that there is an ignored child test , and also adding a nonsense reason for that, the same on all levels, except where it is actually applied.
Is this some remains from earlier days ?
Do we really need this ?
What is the purpose of "label" here ?
@nunit/core-team @nunit/framework-team
Beta Was this translation helpful? Give feedback.
All reactions