kenken999's picture
test
275b9f3
raw
history blame
265 Bytes
class TestCaseModel {
/**
* @param {object} response
*/
function TestCaseModel(response) {
this.response = response;
}
/**
* @return {string} testCase
*/
function toString() {
return "Test Case: " + this.response.message.text;
}
}