public void frameUpdateSpeakingTest()
        {
            var sam = new SpeechAnimationManager();

            sam.startSpeechAnimation(0);
            sam.frameUpdate(1.5f);
            Assert.AreEqual(0, sam.getElapsedTime());
        }
        public void pauseSpeechAnimationTest()
        {
            const int testValue = 5;
            var       sam       = new SpeechAnimationManager();

            sam.startSpeechAnimation(0);
            sam.pauseSpeechAnimation(testValue);
            Assert.IsFalse(sam.getIsSpeaking());
            Assert.AreEqual(testValue, sam.getCharIndex());
        }