Esempio n. 1
0
        void Replacements_ApplyTo__Can_Replace_Simple_Words()
        {
            const string sentence = "The quick, brown fox jumps over the lazy dog.";
            const string expected = "The Quick, Brown Fox jumps over the Lazy Dog.";

            var replacements = new Replacements
            {
                { "quick", "Quick" },
                { "brown", "Brown" },
                { "fox", "Fox" },
                { "lazy", "Lazy" },
                { "dog", "Dog" }
            };

            Assert.Equal(expected, replacements.ApplyTo(sentence));
        }
Esempio n. 2
0
        void Replacements_ApplyTo__Can_Interpolate_using_Prefixes_and_Suffixes()
        {
            const string sentence = "The {firstAdjective}, {secondAdjective} {firstCreature} {verb} {position} the {thirdAdjective} {secondCreature}.";
            const string expected = "The Quick, Brown Fox jumps over the Lazy Dog.";

            var replacements = new Replacements
            {
                { "firstAdjective", "Quick" },
                { "secondAdjective", "Brown" },
                { "firstCreature", "Fox" },
                { "verb", "jumps" },
                { "position", "over" },
                { "thirdAdjective", "Lazy" },
                { "secondCreature", "Dog" }
            };

            replacements.Prefix = "{";
            replacements.Suffix = "}";

            Assert.Equal(expected, replacements.ApplyTo(sentence));
        }