public void TestTranslation()
            {
                DoTranslation cls = new DoTranslation();

                cls.Translate("hello");
                cls.Translate("goodbye");
            }
            public void TestTranslation()
            {
                DoTranslation cls = new DoTranslation();

                Assert.IsTrue(cls.Translate("hello"));
                Assert.IsFalse(cls.Translate("goodbye"));
            }
            public void TestTranslation()
            {
                OutputGenerator.CompareValue = "hallo";
                DoTranslation cls = new DoTranslation();

                Assert.IsTrue(cls.Translate("hello"));
                Assert.IsFalse(cls.Translate("goodbye"));
            }