public IEnumerator Start()
        {
            CommonIntergrationTests common = new CommonIntergrationTests ();
            string testName = "TestSetAndDeleteGlobalState";

            yield return StartCoroutine(common.SetAndDeleteStateAndParse(false, testName));
            UnityEngine.Debug.Log (string.Format("{0}: After StartCoroutine", testName));
            yield return new WaitForSeconds (CommonIntergrationTests.WaitTimeBetweenCalls);
        }
        public IEnumerator Start()
        {
            CommonIntergrationTests common = new CommonIntergrationTests();
            string testName = "TestSetAndDeleteGlobalState";

            yield return(StartCoroutine(common.SetAndDeleteStateAndParse(false, testName)));

            UnityEngine.Debug.Log(string.Format("{0}: After StartCoroutine", testName));
            yield return(new WaitForSeconds(CommonIntergrationTests.WaitTimeBetweenCalls));
        }