Package br.facet.tcc.pojo

Examples of br.facet.tcc.pojo.SituacaoDoAlunoNaTurma


     * Test method for
     * {@link br.facet.tcc.impl.dao.DaoConfiguration#salvar(java.lang.Object)}.
     */
    @Test
    public final void testSalvar() throws DaoException {
        SituacaoDoAlunoNaTurma situacaoDoAlunoNaTurma = new SituacaoDoAlunoNaTurma();

        situacaoDoAlunoNaTurma.setAluno(this.alunoDao.listar(Aluno.class)
            .get(0));
        situacaoDoAlunoNaTurma.setSituacao(Situacao.APROVADO);
        situacaoDoAlunoNaTurma.setTurma(this.turmaDao.listar(Turma.class)
            .get(0));
        Integer codigo = this.getSituacaoDoAlunoNaTurmaDao().salvar(
            situacaoDoAlunoNaTurma);
        Assert.assertTrue("SituacaoDoAlunoNaTurma nao foi salvo.", codigo > 0);
    }
View Full Code Here


     * {@link br.facet.tcc.impl.dao.DaoConfiguration#atualizar(java.lang.Object)}
     * .
     */
    @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

    @Test
    public final void testExcluir() throws DaoException {
        int unexpected = this.getSituacaoDoAlunoNaTurmaDao()
            .listar(SituacaoDoAlunoNaTurma.class).size();

        SituacaoDoAlunoNaTurma situacaoDoAlunoNaTurma = this
            .getSituacaoDoAlunoNaTurmaDao().obterPorID(
                SituacaoDoAlunoNaTurma.class, 4);

        this.getSituacaoDoAlunoNaTurmaDao().excluir(situacaoDoAlunoNaTurma);
View Full Code Here

     * {@link br.facet.tcc.impl.dao.DaoConfiguration#pesquisar(java.lang.Object)}
     * .
     */
    @Test
    public final void testPesquisar() throws DaoException {
        SituacaoDoAlunoNaTurma situacaoDoAlunoNaTurma = new SituacaoDoAlunoNaTurma();
        situacaoDoAlunoNaTurma.setSituacao(Situacao.APROVADO);
        List<SituacaoDoAlunoNaTurma> situacaoDoAlunoNaTurma1 = this
            .getSituacaoDoAlunoNaTurmaDao().pesquisar(situacaoDoAlunoNaTurma);

        Assert.assertFalse(situacaoDoAlunoNaTurma1.isEmpty());
    }
View Full Code Here

TOP

Related Classes of br.facet.tcc.pojo.SituacaoDoAlunoNaTurma

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.