Clover coverage report - Maven Clover report
Coverage timestamp: Sun Mar 18 2007 17:42:32 CET
file stats: LOC: 26   Methods: 3
NCLOC: 14   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
ExpectationEventSourceImpl.java - 100% 100% 100%
coverage
 1    package com.agical.rmock.core.expectation;
 2   
 3    import com.agical.rmock.core.Section;
 4   
 5    /**
 6    * @author brolund
 7    *
 8    * (c) 2005 Agical AB
 9    */
 10    public class ExpectationEventSourceImpl implements ExpectationEventSource {
 11   
 12    private ExpectationListener expectationListener;
 13   
 14  1 public ExpectationEventSourceImpl() {
 15  1 super();
 16    }
 17   
 18  1 public void setExpectationListener(ExpectationListener expectationListener) {
 19  1 this.expectationListener = expectationListener;
 20    }
 21   
 22  1 public void expectationsRecorded(Section rootSection) {
 23  1 expectationListener.expectationsRecorded( rootSection );
 24    }
 25   
 26    }