Clover coverage report - DynamicJava Test Coverage (dynamicjava-20130518-r5436)
Coverage timestamp: Sat May 18 2013 03:01:28 CDT
file stats: LOC: 29   Methods: 2
NCLOC: 15   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
BoundType.java 50% 80% 100% 77.8%
coverage coverage
 1    package edu.rice.cs.dynamicjava.symbol.type;
 2   
 3    import edu.rice.cs.dynamicjava.symbol.*;
 4   
 5    /**
 6    * Class BoundType, a component of the ASTGen-generated composite hierarchy.
 7    * Note: null is not allowed as a value for any field.
 8    * @version Generated automatically by ASTGen at Sat May 18 03:00:38 CDT 2013
 9    */
 10    @SuppressWarnings("unused")
 11    public abstract class BoundType extends ValidType {
 12    private final Iterable<? extends Type> _ofTypes;
 13   
 14    /**
 15    * Constructs a BoundType.
 16    * @throws java.lang.IllegalArgumentException If any parameter to the constructor is null.
 17    */
 18  5200 public BoundType(Iterable<? extends Type> in_ofTypes) {
 19  5200 super();
 20  5200 if (in_ofTypes == null) {
 21  0 throw new java.lang.IllegalArgumentException("Parameter 'ofTypes' to the BoundType constructor was null");
 22    }
 23  5200 _ofTypes = in_ofTypes;
 24    }
 25   
 26  41259 public Iterable<? extends Type> ofTypes() { return _ofTypes; }
 27   
 28    public abstract int generateHashCode();
 29    }