* Test method for
* {@link br.facet.tcc.impl.dao.DaoConfiguration#salvar(java.lang.Object)}.
*/
@Test
public final void testSalvar() throws DaoException {
Mensalidade mensalidade = new Mensalidade();
mensalidade.setAluno(this.getAlunoDao().listar(Aluno.class).get(0));
// mensalidade.setMesReferencia();
mensalidade.setStatus(Status.ATIVO);
mensalidade.setValor(400.00f);
mensalidade.setValorPago(400.00f);
Integer codigo = this.getMensalidadeDao().salvar(mensalidade);
Assert.assertTrue("Endereco nao foi salvo.", codigo > 0);
}