use of org.apache.xbean.blueprint.example.VodkaService in project geronimo-xbean by apache.
the class VodkaUsingBlueprintTest method testWine.
public void testWine() throws Exception {
BeanMetadataImpl meta = (BeanMetadataImpl) reg.getComponentDefinition("vodkaService");
checkPropertyValue("name", "Grey Goose", meta);
checkPropertyValue("id", "vodkaService", meta);
// Test more complex classes
checkPropertyValue("vodkaClass", VodkaService.class.getName(), meta);
}
Aggregations