(id: string, text: string, translatedText: string = null)
| 89 | |
| 90 | // Private methods |
| 91 | private addQuestion(id: string, text: string, translatedText: string = null): void{ |
| 92 | this.questionsArray.push(id); |
| 93 | |
| 94 | if(translatedText == null) |
| 95 | this.questionsArray.push(text); |
| 96 | else |
| 97 | this.questionsArray.push(text + (translatedText != ""? " (" + translatedText + ")":"")); |
| 98 | } |
| 99 | |
| 100 | private ask(): void{ |
| 101 | this.speechId = this.selectedQuestionId + "Speech"; |
no outgoing calls
no test coverage detected