using System.Collections.Generic; using ZoneCodeGenerator.Parsing.Testing; namespace ZoneCodeGenerator.Parsing { interface IParserState where TState : IParserState { IEnumerable> GetTests(); } }