assertNotNull(compiledMethods);
assertTrue(compiledMethods.hasNext());
}
public void testConfiguredCompiledMethods() {
JavaRuntime runtime=getJavaRuntime();
Iterator compiledMethods=runtime.getCompiledMethods().iterator();
boolean found = false;
while (compiledMethods.hasNext() && !found) {
Object next = compiledMethods.next();
if (!(next instanceof JavaMethod)) {
continue;