+++ /dev/null
-/*
- * Svjatoslav Commons - shared library of common functionality. Author: Svjatoslav Agejenko.
- * This project is released under Creative Commons Zero (CC0) license.
- */
-package eu.svjatoslav.commons.file;
-
-import org.junit.Test;
-
-public class CommonPathResolverTest {
-
- @Test
- public final void testGetDesktopDirectory() {
- System.out.println(CommonPathResolver.getDesktopDirectory());
- }
-
- @Test
- public final void testGetHomeDirectory() {
- System.out.println(CommonPathResolver.getHomeDirectory());
- }
-
-}