@Before
public void initMocks() {
store = mock(RawBinaryStore.class);
source = mock(ComponentSource.class);
final ComponentSourceRegistry registry = mock(ComponentSourceRegistry.class);
when(registry.getSource(SOURCE_NAME)).thenReturn(source);
handler = new TestableRawProxyHandler(store, SOURCE_NAME, registry);
}