Пример #1
0
        public void IsCaseSensitive()
        {
            var comb = new RamComb("my-comb");

            using (var cell = comb.Cell("this-is/MY-cell"))
            {
                cell.Update(new InputOf("its so cold outside"));
            }
            using (var cell = comb.Cell("this-is\\MY-cell"))
            {
                Assert.Equal(
                    "its so cold outside",
                    new TextOf(cell.Content()).AsString()
                    );
            }
        }
Пример #2
0
        public void IsInsensitiveToSeparatorChars()
        {
            var comb = new RamComb("my-comb");

            using (var cell = comb.Cell("this-is/my-cell"))
            {
                cell.Update(new InputOf("its so hot outside"));
            }
            using (var cell = comb.Cell("this-is\\my-cell"))
            {
                Assert.Equal(
                    "its so hot outside",
                    new TextOf(cell.Content()).AsString()
                    );
            }
        }