when(idMeta.forTranscoding().encodeToCassandra(primaryKey)).thenReturn(primaryKey);
when(ps.bind(0, values, primaryKey)).thenReturn(bs);
//When
final BoundStatementWrapper actual = binder.bindForCollectionAndMapUpdate(context, ps, changeSet);
//Then
verify(bs).setConsistencyLevel(ConsistencyLevel.ALL);
assertThat(asList(actual.getValues())).containsExactly(0, values, primaryKey);
}