Esempio n. 1
0
        public void TesPersonEmotionsNegative()
        {
            var actual = new PersonEmotions().EmotionHappy("");

            Assert.AreNotEqual(expected: ":-(", actual: actual);
        }
Esempio n. 2
0
        public void TestPersonEmotionsPositive()
        {
            var actual = new PersonEmotions().EmotionSad(String.Empty);

            Assert.AreEqual(expected: ":-(", actual: actual);
        }