Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save BurningDroid/ba30caee86b311117caafce5cd30f993 to your computer and use it in GitHub Desktop.
Save BurningDroid/ba30caee86b311117caafce5cd30f993 to your computer and use it in GitHub Desktop.
Kotlin Junit how to test with File
class FileTest {
@get:Rule
val folder: TemporaryFolder = TemporaryFolder()
@Test
fun test() {
folder.newFile("file name")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment