this is the setUp() method in my testcase.

public void setUp() {
        project = org.gradle.testfixtures.ProjectBuilder.builder().build()
        plugin = new L10NPlugin()
        project.apply plugin: 'bas-l10n'
        project.apply plugin: 'bas-java'
        pluginConvention = project.convention.plugins.l10n as
L10NPluginConvention
        project.l10n {
            projectId = testProject
            resourceOutputFileName = testResourceOutputFileName
        }
    }


My bas-l10n plugin does a project.afterEvaluate call like:

 project.afterEvaluate {
            setupArchivesTask(project, l10nConvention)
  }

Does anyone know why the afterEvaluate method doesn't execute in my testcase?

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email


Reply via email to