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    
 
 
  AssertionErrorWrapper       Line # 7 2 2 100% 1.0
 
  (50)
 
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 AssertionErrorWrapper extends RuntimeException {
8   
9    private static final long serialVersionUID = -2087349195182278608L;
10   
11    private final AssertionError error;
12   
 
13  77 toggle public AssertionErrorWrapper(AssertionError error) {
14  77 this.error = error;
15    }
16   
 
17  77 toggle public AssertionError getAssertionError() {
18  77 return error;
19    }
20    }