Clover coverage report -
Coverage timestamp: Sat Jul 7 2007 16:41:13 CEST
file stats: LOC: 29   Methods: 0
NCLOC: 6   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
ITestResultDisplayer.java - - - -
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.test;
 8   
 9    import java.util.Map;
 10    import jtr.assigner.IFactory;
 11    import jtr.remote.test.NodeInfo;
 12   
 13    /**
 14    * This interface has to be implemented in order to customize the way test results
 15    * are showed at the end of the session.
 16    *
 17    * @author frusso
 18    * @version 4.0
 19    * @since 4.0
 20    */
 21    public interface ITestResultDisplayer extends IFactory {
 22   
 23    /**
 24    * Show the results of the tests contained in the provided map.
 25    *
 26    * @param outcomes
 27    */
 28    public void showResults(Map<NodeInfo, TestOutcomeTable> outcomes);
 29    }