tze.testfiles.2.0.0.source-code.DeletionMode.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testfiles Show documentation
Show all versions of testfiles Show documentation
Manage test files and directories neatly!
The newest version!
package de.joshuagleitze.testfiles
public enum class DeletionMode {
/**
* Always delete the created file after the test has run.
*/
Always,
/**
* Delete the file if the test ran through successfully; retain the file if the test failed. Retained files will be
* deleted the next time the test is executed.
*/
IfSuccessful,
/**
* Retain the file after the test ran. Retained files will be deleted the next time the test is executed.
*/
Never
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy