Clover Coverage Report - EasyMock 2.4
Coverage timestamp: mer. juil. 2 2008 02:17:38 CEST
4   30   3   1,33
0   17   0,75   3
3     1  
1    
 
 
  ExpectedInvocationAndResult       Line # 9 4 3 100% 1.0
 
  (45)
 
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    import java.io.Serializable;
8   
 
9    public class ExpectedInvocationAndResult implements Serializable {
10   
11    private static final long serialVersionUID = -1951159588262854559L;
12   
13    ExpectedInvocation expectedInvocation;
14   
15    Result result;
16   
 
17  57 toggle public ExpectedInvocationAndResult(ExpectedInvocation expectedInvocation,
18    Result result) {
19  57 this.expectedInvocation = expectedInvocation;
20  57 this.result = result;
21    }
22   
 
23  138 toggle public ExpectedInvocation getExpectedInvocation() {
24  138 return expectedInvocation;
25    }
26   
 
27  98 toggle public Result getResult() {
28  98 return result;
29    }
30    }