Clover Coverage Report - EasyMock 2.4
Coverage timestamp: mer. juil. 2 2008 02:17:38 CEST
2   20   2   1
0   11   1   2
2     1  
1    
 
 
  RuntimeExceptionWrapper       Line # 7 2 2 100% 1.0
 
  (95)
 
1    /*
2    * Copyright (c) 2001-2008 OFFIS, Tammo Freese.
3    * This program is made available under the terms of the MIT License.
4    */
5    package org.easymock.internal;
6   
 
7    public class RuntimeExceptionWrapper extends RuntimeException {
8   
9    private static final long serialVersionUID = -3483500330975410177L;
10   
11    private final RuntimeException runtimeException;
12   
 
13  95 toggle public RuntimeExceptionWrapper(final RuntimeException runtimeException) {
14  95 this.runtimeException = runtimeException;
15    }
16   
 
17  73 toggle public RuntimeException getRuntimeException() {
18  73 return runtimeException;
19    }
20    }