コード例 #1
0
        public void Replace(string input, string expected)
        {
            var result = processor.Replace(input);

            Assert.That(result.Replaced, Is.EqualTo(true));
            Assert.That(result.NewLine, Is.EqualTo(expected));
        }
コード例 #2
0
        public void Replace(string input, string expected)
        {
            var actual = processor.Replace(input);

            Assert.That(actual.NewLine, Is.EqualTo(expected));
        }