use of com.cinchapi.concourse.lang.Criteria in project concourse by cinchapi.
the class CON672 method reproTag.
@Test
public void reproTag() {
Tag value = Tag.create("a=b");
Criteria criteria = Criteria.where().key("foo").operator(Operator.EQUALS).value(value);
System.out.println(criteria.ccl());
client.find(criteria);
// lack of Exception means the test passes
Assert.assertTrue(true);
}
Aggregations