The volatile()
-method has been removed. To get the same behavior, override the status()
-method instead and return testCaseStatus.volatile
.
Removed: extend public bool volatile() {
Replacement example:
Old: public bool volatile() { return true; } New: public testCaseStatus status() { return testCaseStatus.volatile; }
Changed error types from simple strings to a newly introduced TestCaseError
object. As a result, the following two interfaces have changed:
Old: extend public str[] validate(str->Object res) { New: extend public TestCaseError[] validate(str->Object res) { Old: extend public void handleErrors(str[] errors) { New: extend public void handleErrors(TestCaseError[] errors) {
Error messages can still be appended using the appendError(..)
or validate(..)
help functions, the same way as before. But if you had previously manually added any error strings to the blackboard, those would have to be changed from str
to BasicTestCaseError("error message")
. And reading error messages through the new class is done with the message()
function.