コード例 #1
0
        public void UnmatchedSubstitutionsAreEchoed(string template)
        {
            string error;
            var    result = new VariableDictionary().Evaluate(template, out error);

            result.Should().Be(template);
            error.Should().Be($"The following tokens were unable to be evaluated: '{template}'");
        }