}
@Override
@Test
public void test() throws Exception
{
LSAudio testAudio = new LSAudio();
AudioObject testObj = LSAudio.loadFile(filename);
try
{
AudioChannel testChannel = testAudio.loadSound(testObj);
System.out.println("loadSound(<audioObject> obj) Constructor-\tGO");
}
catch(Exception e)
{
}
try
{
AudioChannel testChannel2 = testAudio.loadSound(testObj, arrayTestPosition);
System.out.println("loadSound(<audioObject> obj,<int> arrayPos) " +
"Constructor-\tGO");
}
catch (Exception e)
{