All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tze.testfiles.2.0.0.source-code.DeletionMode.kt Maven / Gradle / Ivy

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