01: package org.codehaus.groovy.tck; 02: 03: /** Helper methods used by generated TCK test cases */ 04: 05: public interface TestGeneratorHelper { 06: Object evaluate(String theSrcText, String testName) 07: throws Exception; 08: 09: void parse(String theSrcText, String testName) throws Exception; 10: }