bind( ParameterKeys.PROPERTIES ).toInstance( Collections.singletonMap( "Hello", "world!" ) );
}
} ) ).getInstance( BeanLocator.class );
@SuppressWarnings( { "rawtypes", "unchecked" } )
final Iterator<Map<?, ?>> itr = new EntryListAdapter( locator.locate( ParameterKeys.PROPERTIES ) ).iterator();
assertTrue( itr.hasNext() );
final Map<?, ?> parameters = itr.next();
assertEquals( 1, parameters.size() );