}
@Test
public void should_generate_update_for_set_element_at_index() throws Exception {
//Given
changeSet.listChangeAtIndex = new ElementAtIndex(1, "a");
final Conditions update = update();
when(pm.forTranscoding().<List<Object>>encodeToCassandra(Arrays.asList("a"))).thenReturn(Arrays.<Object>asList("a"));
when(pm.forStatementGeneration().generateUpdateForSetAtIndexElement(update, 1, "a")).thenReturn(update.with(setIdx("property", 1, bindMarker())));
//When