This message was deleted.
# general
s
This message was deleted.
g
You can use TestKit's
GradleRunner
to test your extension but it would be likely classified as functional or integration test) There's no
SettingsBuilder
afaik unlike
ProjectBuilder
for project-level testing.
🤔 1
k
following up in case anyone finds this thread later. The problem is that the gradle testkit wrote an initial line into the settings.gradle file:
Copy code
rootProject.name = "root"
Ended up needing to write the entire settings.gradle file myself:
Copy code
settingsFile().writeText(
...