Beispiel #1
0
        public void ApplyTest(string template, string foo, string bar, string expected)
        {
            var piyo = new Piyo
            {
                Foo = new Uri(foo),
                Bar = bar
            };

            Assert.Equal(expected, TemplateUtil.Apply(piyo, template));
        }