@ShouldMatchDataSet("datasets/expected-users.yml")
public void seriouslyYouAlreadyForgotOpenEJB_questionMark() throws Exception
{
assertEquals(2, em.createQuery("select count(e) from User e",Number.class).getSingleResult().intValue());
final User user = em.find(User.class, 2L);
assertNotNull(user);
user.setName("OpenEJB"); // @Transactional(TransactionMode.COMMIT) will commit it and datasets/expected-users.yml will check it
}