public void TestStopGninnipsMySdrow()
        {
            var actual = StopGninnipsMySdrow.SpinWords("Welcome");

            Assert.Equal("emocleW", actual);

            actual = StopGninnipsMySdrow.SpinWords("Hey fellow warriors");
            Assert.Equal("Hey wollef sroirraw", actual);

            actual = StopGninnipsMySdrow.SpinWords("This is a test");
            Assert.Equal("This is a test", actual); // here was a mistake (tes instead of test)

            actual = StopGninnipsMySdrow.SpinWords("This is another test");
            Assert.Equal("This is rehtona test", actual);

            actual = StopGninnipsMySdrow.SpinWords("You are almost to the last test");
            Assert.Equal("You are tsomla to the last test", actual);

            actual = StopGninnipsMySdrow.SpinWords("Just kidding there is still one more");
            Assert.Equal("Just gniddik ereht is llits one more", actual);
        }