I want to have multiple `test/` folders at arbitra...
# getting-started
r
I want to have multiple
test/
folders at arbitrary depths of subfoldering in my root. Is it possible to configure Gradle/JUnit to allow this
Copy code
└── src
    └── foo
        ├── Foo.kt
        ├── FooDep.kt
        ├── bar
        │   ├── Bar.kt
        │   └── test
        │       └── Bartest.kt
        └── test
            ├── FooDeptest.kt
            └── Footest.kt
🧵 2