@Test
public class TestInjectMetaWorker extends BaseComponentTestCase
{
private InjectSpecification newSpec(String propertyName, String object, Location location)
{
InjectSpecificationImpl result = new InjectSpecificationImpl();
result.setProperty(propertyName);
result.setObject(object);
result.setLocation(location);
return result;
}