From e9ee951e570c441151385d1ccd8c4230abf704ca Mon Sep 17 00:00:00 2001 From: Clyhtsuriva Date: Sat, 26 Jun 2021 14:32:12 +0200 Subject: Updated javadoc, added jacoco and the necessary JUnit for this feature. --- src/main/java/musichub/business/PathValidation.java | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) (limited to 'src/main/java/musichub') diff --git a/src/main/java/musichub/business/PathValidation.java b/src/main/java/musichub/business/PathValidation.java index 97f8759..b0281ba 100644 --- a/src/main/java/musichub/business/PathValidation.java +++ b/src/main/java/musichub/business/PathValidation.java @@ -11,10 +11,21 @@ import java.nio.file.Paths; * @version 1.0 */ -public class PathValidation { +public final class PathValidation { /** - * Methode that checks the validity of a given path + * Method that just throws an AssertionError if the class is called + * + * @throws AssertionError you can't instantiate this class + * @author Aimeric ADJUTOR + */ + + 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 -- cgit v1.2.3