Clover coverage report - EasyMock 2.2
Coverage timestamp: Mo Apr 17 2006 21:21:22 CEST
file stats: LOC: 22   Methods: 0
NCLOC: 8   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
IMocksBehavior.java - - - -
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 interface IMocksBehavior extends ILegacyMatcherMethods {
 8   
 9    // record
 10    void addExpected(ExpectedInvocation expected, Result result, Range count);
 11   
 12    void addStub(ExpectedInvocation expected, Result result);
 13   
 14    void checkOrder(boolean value);
 15   
 16    // replay
 17    Result addActual(Invocation invocation);
 18   
 19    // verify
 20    void verify();
 21   
 22    }