Clover coverage report - EasyMock 1.2_Java1.5
Coverage timestamp: So Aug 7 2005 17:48:15 CEST
file stats: LOC: 14   Methods: 1
NCLOC: 8   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
NiceBehavior.java - 100% 100% 100%
coverage
 1    /*
 2    * Copyright (c) 2001-2005 OFFIS. This program is made available under the terms of
 3    * the MIT License.
 4    */
 5    package org.easymock.internal;
 6   
 7    import java.lang.reflect.Method;
 8   
 9    public class NiceBehavior extends UnorderedBehavior {
 10  9 protected Result returnValueForUnexpected(Method method) {
 11  9 return Result.createReturnResult(RecordState.emptyReturnValueFor(method
 12    .getReturnType()));
 13    }
 14    }