Package br.facet.tcc.enums

Examples of br.facet.tcc.enums.Situacao


    @Test
    public final void testAtualizar() throws DaoException {
        SituacaoDoAlunoNaTurma situacaoDoAlunoNaTurma = this
            .getSituacaoDoAlunoNaTurmaDao()
            .listar(SituacaoDoAlunoNaTurma.class).get(0);
        Situacao expected = situacaoDoAlunoNaTurma.getSituacao();

        situacaoDoAlunoNaTurma.setSituacao(Situacao.REPROVADO);
        this.getSituacaoDoAlunoNaTurmaDao().atualizar(situacaoDoAlunoNaTurma);
        Situacao actual = situacaoDoAlunoNaTurma.getSituacao();

        Assert.assertNotSame("SituacaoDoAlunoNaTurma s�o diferentes",
            expected == actual);
    }
View Full Code Here

TOP

Related Classes of br.facet.tcc.enums.Situacao

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.