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    
 
 
  ThrowableWrapper       Line # 7 2 2 100% 1.0
 
  (44)
 
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 ThrowableWrapper extends Throwable {
8   
9    private static final long serialVersionUID = -4434322855124959723L;
10   
11    private final Throwable throwable;
12   
 
13  74 toggle public ThrowableWrapper(final Throwable throwable) {
14  74 this.throwable = throwable;
15    }
16   
 
17  74 toggle public Throwable getThrowable() {
18  74 return throwable;
19    }
20    }