Clover coverage report - DynamicJava Test Coverage (dynamicjava-20130518-r5436)
Coverage timestamp: Sat May 18 2013 03:01:28 CDT
file stats: LOC: 23   Methods: 1
NCLOC: 9   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
ReferenceType.java - 100% 100% 100%
coverage
 1    package edu.rice.cs.dynamicjava.symbol.type;
 2   
 3    import edu.rice.cs.dynamicjava.symbol.*;
 4   
 5    /**
 6    * Class ReferenceType, 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 ReferenceType extends ValidType {
 12   
 13    /**
 14    * Constructs a ReferenceType.
 15    * @throws java.lang.IllegalArgumentException If any parameter to the constructor is null.
 16    */
 17  54338 public ReferenceType() {
 18  54338 super();
 19    }
 20   
 21   
 22    public abstract int generateHashCode();
 23    }