//DE - Not even sure what this is testing, commenting out
        //[Test]
        public void generate()
        {
            LETSIRTE_Service client = getClient();

            Log("verify open attempt");
            attemptSummary[] attempts = client.GetAttemptList();
            if (entry.other == attempts[attempts.Length - 1].entry)
            {
                Assert.Ignore(string.Format("Current attempt for registration {0} is closed, registration is closed, test can't continue.", RegId));
            }

            Requests rq = new Requests();

            rq.interactionsFillIn();
            rq.interactionsLongFillIn();
            rq.interactionsPerformanceTest();
            rq.interactionsSequencing();
            rq.interactionsTest();
            clearTrace();

            // get
            cocdType cmi = client.Get();

            saveTrace("get", "");

            // set
            clearTrace();
            cmi.exit = exit.normal;
            cmi.attemptNumberSpecified = false;
            client.Set(cmi);
            saveTrace("set", "");

            // getattemptlist
            clearTrace();
            attempts = client.GetAttemptList();
            saveTrace("getAttemptList", "");

            //getAttempt
            clearTrace();
            client.GetAttempt(1);
            saveTrace("getAttempt", "");
        }
        public void getAttempt()
        {
            LETSIRTE_Service client = getClient();

            Log(client.GetAttempt(2).ToString());
        }