// this test makes sure the delegate invoked by the called process can be resolved (context switch necessary).
// we cannot load the class
try {
new CalledProcessDelegate();
Assert.fail("exception expected");
}catch (NoClassDefFoundError e) {
// expected
}