Beispiel #1
0
        public void Test_GetEmailContent_HasExpectedOutput(EmailTypes emailType)
        {
            // given
            var subject = new EmailContentCreator();

            // when
            string testString = subject.GetEmailContent(emailType);

            // then
            Assert.AreEqual($"SUBJECT: {emailType.ToString()} | CONTENT: This is email of type: \"{emailType.ToString()}\".", testString);
        }