use of com.yahoo.elide.annotation.FilterExpressionPath in project elide by yahoo.
the class EntityDictionaryTest method testAnnotationFilterExpressionPath.
@Test
public void testAnnotationFilterExpressionPath() {
bindEntity(Book.class);
FilterExpressionPath fe = getMethodAnnotation(ClassType.of(Book.class), "getEditor", FilterExpressionPath.class);
assertEquals("publisher.editor", fe.value());
}
Aggregations