NoSuchMethodException, JclException {
JarClassLoader jc = new JarClassLoader( new String[] { "./test-classes" } );
Object testObj = null;
jc.loadClass( "xeus.jcl.test.Test" );
jc.unloadClass( "xeus.jcl.test.Test" );
try {
// Should get loaded from system
testObj = jc.loadClass( "xeus.jcl.test.Test" ).newInstance();
assertNotNull( testObj );