@Test
 public void shouldReturnTrueForEqOperator() throws Exception {
   assertThat(OperatorType.contains("$eq")).isTrue();
 }
 @Test
 public void shouldReturnFalseForUnknownOperator() throws Exception {
   assertThat(OperatorType.contains("$foo")).isFalse();
 }