//assertTranslation("select an.mother from Animal an where an.mother.bodyWeight is not null");
assertTranslation( "select an.mother.bodyWeight from Animal an order by an.mother.bodyWeight" );
}
public void testConstructorNode() throws Exception {
ConstructorNode n = new ConstructorNode();
assertNull( n.getFromElement() );
assertFalse( n.isReturnableEntity() );
}