Clover coverage report -
Coverage timestamp: Sat Jul 7 2007 16:41:13 CEST
file stats: LOC: 38   Methods: 2
NCLOC: 10   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
CyclicAssignmentPolicy.java - 100% 100% 100%
coverage
 1    /**
 2    * JTRunner is free software; you can redistribute it and/or modify it under the
 3    * terms of the GNU General Public License as published by the Free Software
 4    * Foundation; either version 2, or (at your option) any later version.
 5    */
 6   
 7    package jtr.assigner.impl;
 8   
 9    import jtr.assigner.IAssignmentPolicy;
 10    import jtr.assigner.IParamsAssigner;
 11   
 12    /**
 13    * This class is the default implementation of the cyclic parameters assignment
 14    * policy.<br>
 15    * It has to be used only to retrieve concrete <code>IParamsAssigner</code>
 16    * implementations providing a cyclic parameters assignment policy.
 17    *
 18    * @author Francesco Russo (frusso@dev.java.net)
 19    * @version 4.0
 20    * @since 1.0
 21    */
 22    public class CyclicAssignmentPolicy implements IAssignmentPolicy {
 23    /**
 24    * Default constructor.
 25    */
 26  4 public CyclicAssignmentPolicy() {
 27    }
 28   
 29    /**
 30    * Return the concrete <code>IParamsAssigner</code> implementation
 31    * providing a cyclic parameters assignment policy.
 32    *
 33    * @return IParamsAssigner
 34    */
 35  4 public IParamsAssigner getAssigner() {
 36  4 return new CyclicParamsAssigner();
 37    }
 38    }