File size: 265 Bytes
275b9f3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class TestCaseModel {
  /**
   * @param {object} response
   */
  function TestCaseModel(response) {
    this.response = response;
  }
  
  /**
   * @return {string} testCase
   */
  function toString() {
    return "Test Case: " + this.response.message.text;
  }
}