public void shouldIgnoreValuesFromEntityWhenGettingAllValuesForNonUniqueOptionWhenValuesPresentOnPropertyLevel() {
// given
Class<?> entityType = Foo.class;
String propertyName = "bar";
optionsServiceContext.addPropertyOption( entityType, propertyName, new PermissionOption( "user" ), "read" );
optionsServiceContext.addPropertyOption( entityType, propertyName, new PermissionOption( "author" ), "read,write" );
optionsServiceContext.addEntityOption( entityType, new PermissionOption( "admin" ), "read,write,delete" );
// when
OptionsContext context = OptionsContextImpl.forProperty( getSources(), entityType, propertyName );
// then