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