We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
INV provides a markdown method to write markdown-style comments. Those comments are inserted into the report.md at the end of a run.
markdown
report.md
Since INV allows the broadcast of POJO (or POGO), would it be interesting to include Groovydoc comments in the report.md?
Per example:
inv { broadcast $inv.MyBroadcast using { groovydoc true return { return new MyPogo() } } } /** My superb comment */ class MyPogo { /** My other tremendous comment. */ void myMethod() { // .... } }
report.md:
MyINV: undefined Statement(s): 1 #### 1. MyBroadcast My superb comment. Methods: [type] myMethod: My other tremendous comment.
The text was updated successfully, but these errors were encountered:
benjboyer
No branches or pull requests
INV provides a
markdown
method to write markdown-style comments. Those comments are inserted into thereport.md
at the end of a run.Since INV allows the broadcast of POJO (or POGO), would it be interesting to include Groovydoc comments in the
report.md
?Per example:
report.md:
The text was updated successfully, but these errors were encountered: