Quick test class

This commit is contained in:
2015-05-28 19:24:39 +02:00
parent 484d2aee81
commit 9ba62993e8
+20
View File
@@ -0,0 +1,20 @@
package audio.io;
import java.io.File;
import java.io.IOException;
import audio.Song;
public class Main {
public static void main(String[] args) {
Song s = null;
try {
s = JSONReader.readSong(new File("C:\\Users\\Kenneth\\Development\\Java Development\\SimApplicatie\\Arcade\\songs\\NAME_OF_SONG\\NAME_OF_SONG.csf"));
} catch (IOException e) {
e.printStackTrace();
}
System.out.println(s);
}
}