Examples of Turma


Examples of br.facet.tcc.pojo.Turma

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

        turma.setAlunos(this.getAlunoDao().listar(Aluno.class));
        turma.setAno("2012");
        turma.setDisciplina(this.getDisciplinaDao().listar(Disciplina.class)
            .get(0));
        turma.setHorarioDeAulas(HorarioDeAulas.QUARTA_SEGUNDO_HORARIO);
        turma.setProfessor(this.getProfessorDao().listar(Professor.class)
            .get(0));
        turma.setStatus(Status.ATIVO);

        Integer codigo = this.getTurmaDao().salvar(turma);
        Assert.assertTrue("Turma nao foi salvo.", codigo > 0);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.