Tests.SpeechTests.TestStandard C# (CSharp) Method

TestStandard() private method

private TestStandard ( ) : void
return void
        public void TestStandard()
        {
            SpeechService.Speak("This is a test for a small ship.", null, 0, 0, 10, 0, 0, true);
            SpeechService.Speak("This is a test for a medium ship.", null, 0, 0, 10, 0, 0, true);
            SpeechService.Speak("This is a test for a large ship.", null, 0, 0, 10, 0, 0, true);

            SpeechService.Speak("This is a test.", null, 0, 0, 0, 0, 0, true);
            SpeechService.Speak("This is a test with chorus.", null, 0, 0, 10, 0, 0, true);
            //SpeechService.Speak("This is a test with echo.", null, 0, 0, 70, 0, 0, true);
            //SpeechService.Speak("This is a test with reverb.", null, 0, 0, 0, 100, 0, true);
            //SpeechService.Speak("This is a test with reverb and echo.", null, 0, 0, 70, 100, 0, true);
            //SpeechService.Speak("This is a test with chorus and reverb.", null, 0, 0, 10, 100, 0, true);
            //SpeechService.Speak("This is a test with chorus, reverb and echo.", null, 0, 0, 70, 100, 0, true);
            SpeechService.Speak("This commodity should sell for at least 6000 credits.", null, 0, 0, 10, 100, 0, true);
        }