Clover coverage report - Maven Clover report
Coverage timestamp: Sun Mar 18 2007 17:42:32 CET
file stats: LOC: 18   Methods: 1
NCLOC: 8   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
UnsatisfiedExpectationsException.java - 100% 100% 100%
coverage
 1    package com.agical.rmock.core.exception;
 2   
 3    import com.agical.rmock.core.Section;
 4   
 5    /**
 6    * Thrown when one or more expectations are not satisfied.
 7    * <em>(c) Agical AB 2005</em>
 8    * @author joakim.ohlrogge
 9    *
 10   
 11    */
 12    public class UnsatisfiedExpectationsException extends RMockExpectationException {
 13    private static final long serialVersionUID = 1L;
 14   
 15  1 public UnsatisfiedExpectationsException(Section root, boolean isRecording) {
 16  1 super(root, isRecording, "UNSATISFIED!");
 17    }
 18    }