Clover coverage report -
Coverage timestamp: Do Okt 21 2004 12:21:23 CEST
file stats: LOC: 69   Methods: 10
NCLOC: 30   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
ResourceLocatorTest.java - 80% 90% 86,7%
coverage coverage
 1    /*
 2    * Created on Feb 26, 2003
 3    *
 4    * To change this generated comment go to
 5    * Window>Preferences>Java>Code Generation>Code and Comments
 6    */
 7    package org.jconfig.utils;
 8   
 9    import java.io.IOException;
 10   
 11    import junit.framework.TestCase;
 12   
 13    /**
 14    * @author terry
 15    *
 16    * To change this generated comment go to
 17    * Window>Preferences>Java>Code Generation>Code and Comments
 18    */
 19    public class ResourceLocatorTest extends TestCase {
 20   
 21    /**
 22    * Constructor for ResourceLocatorTest.
 23    * @param arg0
 24    */
 25  8 public ResourceLocatorTest(String arg0) {
 26  8 super(arg0);
 27    }
 28   
 29  0 public static void main(String[] args) {
 30  0 junit.textui.TestRunner.run(ResourceLocatorTest.class);
 31    }
 32   
 33    /**
 34    * Test for void ResourceLocator()
 35    */
 36  1 public void testResourceLocator() throws IOException {
 37  1 ResourceLocator locator = new ResourceLocator("config.xml");
 38  1 assertNotNull(locator);
 39  1 assertEquals("config.xml",locator.getName());
 40    }
 41   
 42    /*
 43    * Test for void ResourceLocator(String)
 44    */
 45  1 public void testResourceLocatorString() {
 46    }
 47   
 48  1 public void testFindResource() {
 49    }
 50   
 51  1 public void testGetName() {
 52    }
 53   
 54  1 public void testGetInputStream() {
 55    }
 56   
 57  1 public void testLastModified() {
 58    }
 59   
 60  1 public void testGetDirectory() {
 61    }
 62   
 63    /*
 64    * Test for String toString()
 65    */
 66  1 public void testToString() {
 67    }
 68   
 69    }