public void TesPersonEmotionsNegative() { var actual = new PersonEmotions().EmotionHappy(""); Assert.AreNotEqual(expected: ":-(", actual: actual); }
public void TestPersonEmotionsPositive() { var actual = new PersonEmotions().EmotionSad(String.Empty); Assert.AreEqual(expected: ":-(", actual: actual); }