From 67ed18fe86ddfabe5f6c6c270273597799722a72 Mon Sep 17 00:00:00 2001 From: Clyhtsuriva Date: Sat, 26 Jun 2021 22:07:53 +0200 Subject: Tests are ok fully covered. --- .../musichub.business/PathValidation.java.html | 39 ---------------------- 1 file changed, 39 deletions(-) delete mode 100644 target/site/jacoco/musichub.business/PathValidation.java.html (limited to 'target/site/jacoco/musichub.business/PathValidation.java.html') diff --git a/target/site/jacoco/musichub.business/PathValidation.java.html b/target/site/jacoco/musichub.business/PathValidation.java.html deleted file mode 100644 index 4d22953..0000000 --- a/target/site/jacoco/musichub.business/PathValidation.java.html +++ /dev/null @@ -1,39 +0,0 @@ -PathValidation.java

PathValidation.java

package musichub.business;
-
-import java.nio.file.Files;
-import java.nio.file.Path;
-import java.nio.file.Paths;
-
-/**
- * Class offering a path validation method.
- *
- * @author Aimeric ADJUTOR
- * @version 1.0
- */
-
-public final class PathValidation {
-
-    /**
-     * Method that just throws an AssertionError if the class is called
-     * @author Aimeric ADJUTOR
-     * @throws AssertionError you can't instantiate this class
-     */
-
-    public PathValidation() {
-        throw new AssertionError("You just can't instantiate this class.");
-    }
-
-    /**
-     * Method that checks the validity of a given path
-     *
-     * @param inputPath the path given by the user
-     * @return a boolean
-     */
-
-    public static boolean isPathValid(String inputPath) {
-        Path path = Paths.get(inputPath);
-        return Files.exists(path);
-    }
-
-}
-
\ No newline at end of file -- cgit v1.2.3