1 |
| |
2 |
| |
3 |
| |
4 |
| |
5 |
| package org.easymock.internal; |
6 |
| |
7 |
| public class ExpectedInvocationAndResults { |
8 |
| ExpectedInvocation expectedInvocation; |
9 |
| |
10 |
| Results results; |
11 |
| |
12 |
346
| public ExpectedInvocationAndResults(ExpectedInvocation expectedInvocation,
|
13 |
| Results results) { |
14 |
346
| this.expectedInvocation = expectedInvocation;
|
15 |
346
| this.results = results;
|
16 |
| } |
17 |
| |
18 |
2003
| public ExpectedInvocation getExpectedInvocation() {
|
19 |
2003
| return expectedInvocation;
|
20 |
| } |
21 |
| |
22 |
1411
| public Results getResults() {
|
23 |
1411
| return results;
|
24 |
| } |
25 |
| |
26 |
204
| @Override
|
27 |
| public String toString() { |
28 |
204
| return expectedInvocation.toString() + ": " + results.toString();
|
29 |
| } |
30 |
| } |