ebarboni commented on code in PR #5561:
URL: https://github.com/apache/netbeans/pull/5561#discussion_r1120025442
##########
harness/nbjunit/src/org/netbeans/junit/ParametricTestSuite.java:
##########
@@ -36,23 +36,28 @@ public ParametricTestSuite() {
/**
* Constructs a ParametricTestSuite with the given name.
+ * @param name name of the suite
*/
public ParametricTestSuite(String name){
super(name);
}
/**
* Returns an array of testcases for the given parameter.
+ * @param parameter parametre to retrieve the test case frome
+ * @return array of testcases
*/
protected abstract ParametricTestCase[] cases(Object parameter);
/**
* Returns an array of parameters for this suite.
+ * @return array or parameter
*/
protected abstract Object[] getParameters();
/**
* Factory method returns a new instance of a testcases.
* Overrides the basic method so that it's needless any more.
+ * @return test case
Review Comment:
I put an additionnal commit to set doclint to verify only what
html/reference/syntax. Thanks for the tip, I do prefer focus on links/href/html
as it break website :p. Bad text for a parameter/return can be fixed later if
people have concern on that.
I had to relax the failonwarning because javadoc on jdk18 create warning on
depreciate with removal of some classes.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists