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

CannotAddTwoSubjects() private method

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

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