Property bundleProperty = getPropertyByTitle(getSubProperties(imageProperty), "as Bundle");
assertTrue(bundleProperty.isModified());
assertEquals("first() from test.client.MyImageBundle", getPropertyText(bundleProperty));
// set second()
{
ImageBundleInfo bundle = ImageBundleContainerInfo.getBundles(frame).get(0);
ImageBundlePrototypeDescription prototype = bundle.getPrototypes().get(1);
assertEquals("second", prototype.getMethod().getName());
bundleProperty.setValue(prototype);
}
assertEditor(
"public class Test implements EntryPoint {",