Clover coverage report - Maven Clover report
Coverage timestamp: Sun Mar 18 2007 17:42:32 CET
file stats: LOC: 21   Methods: 1
NCLOC: 8   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
UnexpectedInvocationException.java - 100% 100% 100%
coverage
 1    package com.agical.rmock.core.exception;
 2   
 3    import com.agical.rmock.core.Section;
 4   
 5   
 6    /**
 7    * Thrown when an invocation is made that is not expected according to setup expectations.
 8    * <em>(c) Agical AB 2005</em>
 9    * @author joakim.ohlrogge
 10    *
 11   
 12    */
 13    public class UnexpectedInvocationException extends RMockExpectationException {
 14    private static final long serialVersionUID = 1L;
 15   
 16   
 17   
 18  5 public UnexpectedInvocationException(Section expectations, boolean isRecording, String invocation) {
 19  5 super(expectations, isRecording, "UNEXPECTED!\n"+"No expectation matched: "+invocation);
 20    }
 21    }