@Test
public void testParametricLikeQueries() throws Exception {
List<?> result = session
.createQuery( "from Hypothesis h where h.description LIKE :myParam" )
.setString( "myParam", "%stuff%" )
.list();
assertThat( result ).onProperty( "id" ).containsOnly( "16" );
}