-
Notifications
You must be signed in to change notification settings - Fork 11
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
Show Disable Reason in Result Window #25
Comments
Currently the <test>
<disabled>true</disabled>
</test> If test is not disabled we get the following outcome. <test>
<disabled>false</disabled>
</test> To keep backward compatibility we should not change that behaviour and add another flag. So the results would be one of:
<test>
<disabled>true</disabled>
</test>
<test>
<disabled>true</disabled>
<disabled_reason><![CDATA[the reason]]></disabled_reason>
</test>
<test>
<disabled>false</disabled>
</test> |
I allowed myself to correct your post @jgebal as the word |
I explained in utPLSQL/utPLSQL#1192 why I would use CamelCase and name the node |
utPLSQL adds a reason to a disabled test: utPLSQL/utPLSQL#610
Add the reason to the result window if the test is disabled.
The text was updated successfully, but these errors were encountered: