Clover coverage report - EasyMock 2.2
Coverage timestamp: Mo Apr 17 2006 21:21:22 CEST
file stats: LOC: 25   Methods: 3
NCLOC: 15   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
ExpectedInvocationAndResult.java - 100% 100% 100%
coverage
 1    /*
 2    * Copyright (c) 2001-2006 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 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    }