Lines Matching refs:currentChapterTests
360 this.currentChapterTests = []; // array of tests for the current chapter. property in TestSuite
509 this.currentChapterTests = this.testListForChapter(chapter);
572 for (var i = 0; i < this.currentChapterTests.length; ++i) {
573 var currTest = this.currentChapterTests[i];
636 if (this.currChapterTestIndex < this.currentChapterTests.length - 1)
660 for (var i = this.currChapterTestIndex + 1; i < this.currentChapterTests.length; ++i) {
661 if (!this.currentChapterTests[i][completedProperty]) {
741 for (var j = 0; j < this.currentChapterTests.length; ++j) {
742 var currTest = this.currentChapterTests[j];
756 if (index >= 0 && index < this.currentChapterTests.length) {
772 if (this.currChapterTestIndex < 0 || this.currChapterTestIndex >= this.currentChapterTests.length)
775 return this.currentChapterTests[this.currChapterTestIndex].id;
780 var theTest = this.currentChapterTests[this.currChapterTestIndex];
804 document.getElementById('chapter-test-count').innerText = this.currentChapterTests.length;
991 if (this.currChapterTestIndex >= 0 && this.currChapterTestIndex < this.currentChapterTests.length)
992 selectedTestName = this.currentChapterTests[this.currChapterTestIndex].id;