Clover coverage report - Maven Clover report
Coverage timestamp: Sun Mar 18 2007 17:42:32 CET
file stats: LOC: 17   Methods: 1
NCLOC: 9   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
RMockAssertionFailedException.java - 100% 100% 100%
coverage
 1    package com.agical.rmock.core.exception;
 2   
 3    import com.agical.rmock.core.Section;
 4    import com.agical.rmock.core.expectation.EngineException;
 5   
 6    public class RMockAssertionFailedException extends EngineException {
 7   
 8    /**
 9    *
 10    */
 11    private static final long serialVersionUID = 1L;
 12   
 13  2 public RMockAssertionFailedException(Section root, boolean isRecording, String s) {
 14  2 super(root, isRecording, "ASSERTION FAILED!\n"+s);
 15    }
 16   
 17    }