1 |
| |
2 |
| |
3 |
| |
4 |
| |
5 |
| package org.easymock.internal; |
6 |
| |
7 |
| public class ExpectedInvocationAndResult { |
8 |
| ExpectedInvocation expectedInvocation; |
9 |
| |
10 |
| Result result; |
11 |
| |
12 |
56
| public ExpectedInvocationAndResult(ExpectedInvocation expectedInvocation,
|
13 |
| Result result) { |
14 |
56
| this.expectedInvocation = expectedInvocation;
|
15 |
56
| this.result = result;
|
16 |
| } |
17 |
| |
18 |
137
| public ExpectedInvocation getExpectedInvocation() {
|
19 |
137
| return expectedInvocation;
|
20 |
| } |
21 |
| |
22 |
97
| public Result getResult() {
|
23 |
97
| return result;
|
24 |
| } |
25 |
| } |