Exemplo n.º 1
0
        public void MakeConverter_ReturnToken(string str, int startIndex, IToken result)
        {
            var singleEmphasis = new SingleEmphasis();

            singleEmphasis.SelectTokenInString(str, startIndex).Should().Be(result);
        }
Exemplo n.º 2
0
        public void MakeConverter_ReturnNull(string str, int startIndex)
        {
            var singleEmphasis = new SingleEmphasis();

            singleEmphasis.SelectTokenInString(str, startIndex).Should().BeNull();
        }