public void GetMatchesFindsNoMatchesForEmpty()
        {
            var expression = new AlternationExpression<char> (m_A);

             var match = expression.Match (EmptyList, 0);

             Assert.IsFalse (match.Success, "Success");
        }