* @return File path, never null
*/
public static final String getTestScratchPath() {
String filePath = DEFAULT_TEMP_DIR;
File scratch = new File(filePath);
if (!scratch.exists() && !scratch.mkdirs()) {
filePath = System.getProperty("java.io.tmpdir"); //$NON-NLS-1$
if (filePath == null) {
filePath = "."; //$NON-NLS-1$
}