blob: fffbdde2e6f2dcb5d777c0d7fc292541167fa394 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
  | 
package musichub.business;
import org.junit.jupiter.api.Test;
import static musichub.business.PathValidation.isPathValid;
import static org.junit.jupiter.api.Assertions.*;
public class PathValidationTest {
    @Test
    void testIsPathValid() {
        assertTrue(isPathValid("Song/Side_To_Side.wav")); //the right path
        assertFalse(isPathValid("wrong_path/Side_To_Side.wav")); //wrong path
        assertFalse(isPathValid("Song/Side_To_Side.mp3")); //wrong extension
    }
    @Test
    void testPathValidationClass() {
        try {
            PathValidation pathValidationClass = new PathValidation();
        } catch (Error ex) {
            assertTrue(ex instanceof AssertionError);
            assertEquals("You just can't instantiate this class.", ex.getMessage());
        }
    }
}
 
  |