public void GetMatchesOfAnyQuestionStar_LikeRegex()
        {
            RepeatExpression<char> expression = new RepeatExpression<char> (m_any);

             expression.AssertMatches ("", ".*?");
        }
        public void GetMatchesOf_A_ForAAABBB_LikeRegex()
        {
            var expression = new RepeatExpression<char> (m_A);

             expression.AssertMatches ("AAABBB", "A*?");
        }