tschuchortdev / kotlin-compile-testing

A library for testing Kotlin and Java annotation processors, compiler plugins and code generation
Mozilla Public License 2.0
648 stars 61 forks source link

Exception when SourceFile is in directory #340

Closed pranjalvachaspati-toast closed 1 year ago

pranjalvachaspati-toast commented 1 year ago

createNewFile() throws an exception if you try to create a SourceFile with path like /foo/bar/baz/MyFile.kt.

The fix, in PR #339, is to call mkdirs() on the parent directory.