Package org.springframework.data.mongodb.core.query

Examples of org.springframework.data.mongodb.core.query.Term


   * @DATAMONGO-973
   */
  @Test
  public void shouldUseFormattedRepresentationForConversion() {

    Term term = spy(new Term("foo", Type.WORD));
    TermToStringConverter.INSTANCE.convert(term);
    verify(term, times(1)).getFormatted();
  }
View Full Code Here

TOP

Related Classes of org.springframework.data.mongodb.core.query.Term

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.