* {@link br.facet.tcc.impl.dao.DaoConfiguration#atualizar(java.lang.Object)}
* .
*/
@Test
public final void testAtualizar() throws DaoException {
Curso curso = this.getCursoDao().listar(Curso.class).get(0);
String expected = curso.getNome();
curso.setNome("Novo Nome");
this.getCursoDao().atualizar(curso);
String actual = this.getCursoDao().listar(Curso.class).get(0).getNome();
Assert.assertNotSame("Cursos s�o diferentes", expected, actual);
}