> > Does anyone know what is the best way to reuse the integration test > fixtures > in: > > subprojects/core/src/integTest/groovy/org/gradle/integtests/fixtures > > for testing one's own plugins? >
AFAIK, you can't do that currently. I'm not happy with this either, but that's the way it is. This question came up a few times already, and I got an impression that some support for integration testing of Gradle plugins will come in the future. For now, I sticked with running Gradle by myself (using GradleLauncher, because the Tooling API doesn't support specifying buildscript file name; it assumes that it's always 'build.gradle', which isn't right in my case, as I have several buildscripts for different tests in one project). LT
