* Test of executeUpdate method with NamedQuery as parameter
*/
@Test
public void testNamedQueryExecuteUpdate() {
String description = "abcd";
NamedQuery query = new NamedQuery(repository, "Dictionay.updateDescription")
.addParameter("description", description)
.addParameter("category", gender);
int count = repository.executeUpdate(query);
assertTrue(count > 0);
entityManager.clear();