/** * Copyright (C) 2008-2010, Squale Project - http://www.squale.org * * This file is part of Squale. * * Squale is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation, either version 3 of the * License, or any later version. * * Squale is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with Squale. If not, see <http://www.gnu.org/licenses/>. */ /* * Cr�� le 18 ao�t 05 * * Pour changer le mod�le de ce fichier g�n�r�, allez � : * Fen�tre>Pr�f�rences>Java>G�n�ration de code>Code et commentaires */ package org.squale.squalix.tools.computing.project; import java.util.Iterator; import org.squale.jraf.commons.exception.JrafDaoException; import org.squale.jraf.spi.persistence.ISession; import org.squale.squalecommon.SqualeTestCase; import org.squale.squalecommon.daolayer.component.AuditDAOImpl; import org.squale.squalecommon.enterpriselayer.businessobject.component.ApplicationBO; import org.squale.squalecommon.enterpriselayer.businessobject.component.AuditBO; import org.squale.squalecommon.enterpriselayer.businessobject.component.ProjectBO; import org.squale.squalix.core.AbstractTask; /** * UNIT_PENDING : Long � mettre � compl�ter. Test insuffisant, aucun assert! */ public class ComputeResultTaskTest extends SqualeTestCase { /** * Test de ComputeResultTask : run() */ public void testRun() { try { ISession session = getSession(); ComputeResultTask computeResultTask = null; ApplicationBO application = getComponentFactory().createApplication( session ); // Collection audits = application.getAudits(); AuditBO audit = AuditDAOImpl.getInstance().getLastAuditByApplication( session, application.getId(), null, AuditBO.TERMINATED ); Iterator itProject = application.getChildren().iterator(); while ( itProject.hasNext() ) { ProjectBO project = (ProjectBO) itProject.next(); // Iterator itAudit = audits.iterator(); // while (itAudit.hasNext()) { // AuditBO audit = (AuditBO) itAudit.next(); computeResultTask = new ComputeResultTask(); computeResultTask.setAuditId( new Long( audit.getId() ) ); computeResultTask.setProjectId( new Long( project.getId() ) ); computeResultTask.setStatus( AbstractTask.NOT_ATTEMPTED ); computeResultTask.run(); // } } } catch ( JrafDaoException e ) { e.printStackTrace(); } } }