@Test(enabled = false, expectedExceptions = HotRodClientException.class, expectedExceptionsMessageRegExp = ".*HQLLUCN000005:.*", description = "see https://issues.jboss.org/browse/ISPN-4423")
@Override
public void testInvalidEmbeddedAttributeQuery() throws Exception {
QueryFactory qf = getQueryFactory();
QueryBuilder queryBuilder = qf.from(getModelFactory().getUserImplClass())
.setProjection("addresses");
Query q = queryBuilder.build();
//todo [anistor] it would be best if the problem would be detected early at build() instead at doing it at list()
q.list(); // exception expected
}