junichi11 commented on code in PR #7857:
URL: https://github.com/apache/netbeans/pull/7857#discussion_r1794551742
##########
php/php.codeception/src/org/netbeans/modules/php/codeception/run/TestCaseVo.java:
##########
@@ -159,6 +159,11 @@ public void setFailureStatus() {
status = TestCase.Status.FAILED;
}
+ public void setSkippedStatus() {
+ assert status == TestCase.Status.PASSED : "Expected PASSED status but
was: " + status; // NOI18N;
Review Comment:
Nitpick:
```suggestion
assert status == TestCase.Status.PASSED : "Expected PASSED status
but was: " + status; // NOI18N;
```
--
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