use of org.grails.web.servlet.boostrap.BootstrapArtefactHandler in project grails-core by grails.
the class BootStrapArtefactHandlerTests method testIsBootStrapClass.
public void testIsBootStrapClass() {
GroovyClassLoader gcl = new GroovyClassLoader();
Class<?> c = gcl.parseClass("class TestBootStrap { }\n");
ArtefactHandler handler = new BootstrapArtefactHandler();
assertTrue(handler.isArtefact(c));
}
Aggregations