also adjust test HibernateQueryFactory

This commit is contained in:
Karsten Ludwig Hauser 2019-02-22 16:18:47 +01:00
parent 665670734e
commit aa4bdd4d6d

View File

@ -60,4 +60,9 @@ public class HibernateQueryFactoryTest {
assertNotNull(queryFactory.update(QAnimal.animal));
}
@Test
public void insert() {
assertNotNull(queryFactory.insert(QAnimal.animal));
}
}