public void test_Create()
{
IComponent component = newMock(IComponent.class);
ValueConverter vc = newValueConverter();
Location l = fabricateLocation(12);
ComponentPropertySource src = newMock(ComponentPropertySource.class);
expect(src.getComponentProperty(component, "key")).andReturn("wiggle");
replay();
MetaBinding b = new MetaBinding("param", vc, l, component, src, "key");