Clover coverage report - DynamicJava Test Coverage (dynamicjava-20110903-r5436)
Coverage timestamp: Sat Sep 3 2011 03:02:20 CDT
file stats: LOC: 29   Methods: 2
NCLOC: 15   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
ArrayType.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 ArrayType, 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 Sep 03 03:01:28 CDT 2011
 9    */
 10    @SuppressWarnings("unused")
 11    public abstract class ArrayType extends ReferenceType {
 12    private final Type _ofType;
 13   
 14    /**
 15    * Constructs a ArrayType.
 16    * @throws java.lang.IllegalArgumentException If any parameter to the constructor is null.
 17    */
 18  342 public ArrayType(Type in_ofType) {
 19  342 super();
 20  342 if (in_ofType == null) {
 21  0 throw new java.lang.IllegalArgumentException("Parameter 'ofType' to the ArrayType constructor was null");
 22    }
 23  342 _ofType = in_ofType;
 24    }
 25   
 26  999 public Type ofType() { return _ofType; }
 27   
 28    public abstract int generateHashCode();
 29    }