comparison core.js @ 44:c57aba852764 Dev_main

Implemented repeat function of tests
author Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk>
date Fri, 10 Apr 2015 16:21:57 +0100
parents 2fd137d891a7
children 4884ca36ffaa
comparison
equal deleted inserted replaced
43:2fd137d891a7 44:c57aba852764
21 21
22 /* create the web audio API context and store in audioContext*/ 22 /* create the web audio API context and store in audioContext*/
23 var audioContext; // Hold the browser web audio API 23 var audioContext; // Hold the browser web audio API
24 var projectXML; // Hold the parsed setup XML 24 var projectXML; // Hold the parsed setup XML
25 25
26 var testXMLSetups; // Hold the parsed test instances 26 var testXMLSetups = []; // Hold the parsed test instances
27 var testResultsHolders; // Hold the results from each test for publishing to XML 27 var testResultsHolders =[]; // Hold the results from each test for publishing to XML
28 var currentTestHolder; // Hold an intermediate results during test - metrics 28 var currentTestHolder; // Hold an intermediate results during test - metrics
29 var audioEngineContext; // The custome AudioEngine object 29 var audioEngineContext; // The custome AudioEngine object
30 var projectReturn; // Hold the URL for the return 30 var projectReturn; // Hold the URL for the return
31 var preTestQuestions = document.createElement('PreTest'); // Store any pre-test question response 31 var preTestQuestions = document.createElement('PreTest'); // Store any pre-test question response
32 var postTestQuestions = document.createElement('PostTest'); // Store any post-test question response 32 var postTestQuestions = document.createElement('PostTest'); // Store any post-test question response