cd0cf3ad4b51613413672c5d7a9dcbb1ad8e243e
[svjatoslav_commons.git] / src / test / java / eu / svjatoslav / commons / file / CommonPathResolverTest.java
1 /*
2  * Svjatoslav Commons - shared library of common functionality.
3  * Copyright (C) 2012, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
4  * 
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of version 2 of the GNU General Public License
7  * as published by the Free Software Foundation.
8  */
9
10 package eu.svjatoslav.commons.file;
11
12 import org.junit.Test;
13
14 public class CommonPathResolverTest {
15
16         @Test
17         public final void testGetDesktopDirectory() {
18                 System.out.println(CommonPathResolver.getDesktopDirectory());
19         }
20
21         @Test
22         public final void testGetHomeDirectory() {
23                 System.out.println(CommonPathResolver.getHomeDirectory());
24         }
25
26 }