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