Clover coverage report - jMock - 1.0-beta1
Coverage timestamp: Sat Nov 29 2003 19:35:59 GMT
file stats: LOC: 24   Methods: 3
NCLOC: 14   Classes: 1
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover
 
 Source file Conditionals Statements Methods TOTAL
IsGreaterThan.java - 66.7% 66.7% 66.7%
coverage coverage
 1   
 /* Copyright (c) 2000-2003, jMock.org. See bundled LICENSE.txt */
 2   
 package org.jmock.constraint;
 3   
 
 4   
 import org.jmock.Constraint;
 5   
 
 6   
 /**
 7   
  * Is the value greater than another {@link java.lang.Comparable} value?
 8   
  */
 9   
 public class IsGreaterThan implements Constraint {
 10   
     private Comparable _object;
 11   
 
 12  2
     public IsGreaterThan(Comparable o) {
 13  2
         _object = o;
 14   
     }
 15   
 
 16  6
     public boolean eval(Object arg) {
 17  6
         return _object.compareTo(arg) < 0;
 18   
     }
 19   
 
 20  0
     public String toString() {
 21  0
         return "a value greater than <" + _object + ">";
 22   
     }
 23   
 }
 24