when(idMeta.forTranscoding().forceEncodeToJSONForCounter(primaryKey)).thenReturn(primaryKey.toString());
when(counterMeta.getCQL3ColumnName()).thenReturn("count");
when(ps.bind(increment, "CompleteBean", primaryKey.toString(), "count")).thenReturn(bs);
BoundStatementWrapper actual = binder.bindForSimpleCounterIncrementDecrement(context, ps, counterMeta, increment, ALL);
verify(bs).setConsistencyLevel(ConsistencyLevel.ALL);
assertThat(asList(actual.getValues())).containsExactly(increment, "CompleteBean", primaryKey.toString(), "count");
}