Search in sources :

Example 6 with ViewAttributeBinder

use of org.robobinding.viewattribute.ViewAttributeBinder in project RoboBinding by RoboBinding.

the class ByBindingAttributeMappingsResolverTest method givenAPropertyAttribute_whenResolve_thenAResolvedPropertyViewAttributeShouldBeReturned.

@Test
public void givenAPropertyAttribute_whenResolve_thenAResolvedPropertyViewAttributeShouldBeReturned() {
    PropertyViewAttributeBinder viewAttributeBinder = Mockito.mock(PropertyViewAttributeBinder.class);
    ByBindingAttributeMappingsResolver byBindingAttributeMappingsResolver = newByBindingAttributeMappingsResolver(aBindingAttributeMappings().withPropertyAttribute("propertyAttribute", viewAttributeBinder).build());
    Collection<ViewAttributeBinder> viewAttributes = byBindingAttributeMappingsResolver.resolve(pendingAttributesForView);
    assertThat(Sets.newHashSet(viewAttributes), equalTo(Sets.<ViewAttributeBinder>newHashSet(viewAttributeBinder)));
}
Also used : PropertyViewAttributeBinder(org.robobinding.viewattribute.property.PropertyViewAttributeBinder) MultiTypePropertyViewAttributeBinder(org.robobinding.viewattribute.property.MultiTypePropertyViewAttributeBinder) ViewAttributeBinder(org.robobinding.viewattribute.ViewAttributeBinder) PropertyViewAttributeBinder(org.robobinding.viewattribute.property.PropertyViewAttributeBinder) MultiTypePropertyViewAttributeBinder(org.robobinding.viewattribute.property.MultiTypePropertyViewAttributeBinder) GroupedViewAttributeBinder(org.robobinding.viewattribute.grouped.GroupedViewAttributeBinder) EventViewAttributeBinder(org.robobinding.viewattribute.event.EventViewAttributeBinder) Test(org.junit.Test)

Aggregations

ViewAttributeBinder (org.robobinding.viewattribute.ViewAttributeBinder)6 Test (org.junit.Test)5 EventViewAttributeBinder (org.robobinding.viewattribute.event.EventViewAttributeBinder)4 GroupedViewAttributeBinder (org.robobinding.viewattribute.grouped.GroupedViewAttributeBinder)4 MultiTypePropertyViewAttributeBinder (org.robobinding.viewattribute.property.MultiTypePropertyViewAttributeBinder)4 PropertyViewAttributeBinder (org.robobinding.viewattribute.property.PropertyViewAttributeBinder)4 ViewResolutionErrors (org.robobinding.ViewResolutionErrors)1