Unit test ConsoleLogger + clean up and unit test RecoverEmailCommand

This commit is contained in:
ljacqu
2016-07-22 22:09:55 +02:00
parent a8df8ceb09
commit 914462fc3f
4 changed files with 381 additions and 31 deletions
@@ -52,7 +52,7 @@ public final class TestHelper {
*/
public static Path getJarPath(String path) {
String sqlFilePath = getUriOrThrow(path).getPath();
// Windows preprends the path with a '/' or '\', which Paths cannot handle
// Windows prepends the path with a '/' or '\', which Paths cannot handle
String appropriatePath = System.getProperty("os.name").contains("indow")
? sqlFilePath.substring(1)
: sqlFilePath;