I had to add all my custom kotlin gradle plugin ta...
# gradle
s
I had to add all my custom kotlin gradle plugin tasks inside the
project.afterEvaluate
closure due to how it depends on some subprojects being fully evaluated. How do you get the
org.gradle.testfixtures.ProjectBuilder
to force that evaluation? After adding that closure I can no longer see those tasks in my unit tests.
I had to cast the project to ProjectInternal to expose an
evaluate()
method.