@Test
public void should_prepare_select_slice_query() throws Exception {
//Given
final ArgumentCaptor<Select> selectCaptor = ArgumentCaptor.forClass(Select.class);
final ArgumentCaptor<String> queryCaptor = ArgumentCaptor.forClass(String.class);
final Select select = select().from("test").where(eq("id", 10)).limit(1);
final PropertyMeta pm = completeBean(Void.class, Long.class)
.propertyName("name").cqlColumnName("name").type(SIMPLE).build();
when(sliceQueryProperties.getEntityMeta()).thenReturn(meta);
when(meta.forOperations().getColumnsMetaToLoad()).thenReturn(asList(pm));