public void should_generate_set_element_at_index_to_list_with_cas_conditions() throws Exception {
//Given
Long id = RandomUtils.nextLong(0,Long.MAX_VALUE);
Object[] boundValues = new Object[] { "whatever" };
CompleteBean entity = builder().id(id).buid();
final CASCondition casCondition = new CASCondition("name", "DuyHai");
final Pair<Assignments, Object[]> updateClauseAndBoundValues = Pair.create(update(), boundValues);
final Pair<Where, Object[]> whereClauseAndBoundValues = Pair.create(QueryBuilder.update("table").with(set("name", "DuyHai")).where(QueryBuilder.eq("id",11L)), boundValues);
when(context.getEntity()).thenReturn(entity);