Clover coverage report - Maven Clover report
Coverage timestamp: Sun Mar 18 2007 17:42:32 CET
file stats: LOC: 39   Methods: 2
NCLOC: 12   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
RMockExpectationException.java - 50% 50% 50%
coverage coverage
 1    /**
 2    *
 3    */
 4    package com.agical.rmock.core.exception;
 5   
 6    import com.agical.rmock.core.Section;
 7    import com.agical.rmock.core.expectation.EngineException;
 8   
 9    /**
 10    * Base class for expectation related exceptions.
 11    * <br />
 12    * <br />
 13    * <em>(c) Agical AB 2005</em>
 14    * @author joakim.ohlrogge
 15    *
 16   
 17    */
 18    public abstract class RMockExpectationException extends EngineException {
 19   
 20    /**
 21    *
 22    */
 23    private static final long serialVersionUID = 1L;
 24   
 25   
 26    /**
 27    * @param arg0
 28    */
 29  6 public RMockExpectationException(Section root, boolean isRecording, String message) {
 30  6 super(root, isRecording, message);
 31    }
 32   
 33    /**
 34    * @param arg0
 35    */
 36  0 public RMockExpectationException(Section root, boolean isRecording, String message, Throwable cause) {
 37  0 super(root, isRecording, message, cause);
 38    }
 39    }