Clover coverage report - EasyMock 1.2_Java1.5
Coverage timestamp: So Aug 7 2005 17:48:15 CEST
file stats: LOC: 17   Methods: 2
NCLOC: 10   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
RuntimeExceptionWrapper.java - 100% 100% 100%
coverage
 1    /*
 2    * Copyright (c) 2001-2005 OFFIS. This program is made available under the terms of
 3    * the MIT License.
 4    */
 5    package org.easymock.internal;
 6   
 7    public class RuntimeExceptionWrapper extends RuntimeException {
 8    private final RuntimeException runtimeException;
 9   
 10  150 public RuntimeExceptionWrapper(final RuntimeException runtimeException) {
 11  150 this.runtimeException = runtimeException;
 12    }
 13   
 14  146 public RuntimeException getRuntimeException() {
 15  146 return runtimeException;
 16    }
 17    }