Clover coverage report - groovy - 1.0-beta-7
Coverage timestamp: Wed Sep 29 2004 16:55:52 BST
file stats: LOC: 23   Methods: 2
NCLOC: 10   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
GroovyCodeSourcePermission.java - 0% 0% 0%
coverage
 1   
 package groovy.security;
 2   
 
 3   
 import java.security.BasicPermission;
 4   
 
 5   
 /**
 6   
  * Permission required to explicitly specify a codebase for a groovy script whose
 7   
  * codebase cannot be determined.  Typically this permission is only
 8   
  * required by clients that want to associate a code source with a script which
 9   
  * is a String or an InputStream.
 10   
  *
 11   
  * @author Steve Goetze
 12   
  */
 13   
 public class GroovyCodeSourcePermission extends BasicPermission {
 14   
 
 15  0
     public GroovyCodeSourcePermission(String name) {
 16  0
         super(name);
 17   
     }
 18   
 
 19  0
     public GroovyCodeSourcePermission(String name, String actions) {
 20  0
         super(name, actions);
 21   
     }
 22   
 }
 23