Alpinely.TownCrier.Tests.EmailTests.CannotAddTwoHtmlViews C# (CSharp) Method

CannotAddTwoHtmlViews() private method

private CannotAddTwoHtmlViews ( ) : void
return void
        public void CannotAddTwoHtmlViews()
        {
            var tokenValues = new Dictionary<string, string> {{"Name", "Bill Gates"}, {"UserId", "123"}};

            var factory = new MergedEmailFactory(new TemplateParser());
            factory.WithTokenValues(tokenValues).WithSubject("xxx").WithHtmlBody("abc").WithHtmlBody("abc");
        }