Clover coverage report - EasyMock 2.2
Coverage timestamp: Mo Apr 17 2006 21:21:22 CEST
file stats: LOC: 30   Methods: 4
NCLOC: 19   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
ExpectedInvocationAndResults.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 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    }