Clover coverage report -
Coverage timestamp: Do Okt 21 2004 12:21:23 CEST
file stats: LOC: 39   Methods: 3
NCLOC: 18   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
AdvancedConfigParserTest.java - 0% 0% 0%
coverage
 1    /*
 2    * Created on 23.07.2003
 3    *
 4    * To change the template for this generated file go to
 5    * Window>Preferences>Java>Code Generation>Code and Comments
 6    */
 7    package org.jconfig.parser;
 8   
 9    import junit.framework.TestCase;
 10   
 11    import org.jconfig.Configuration;
 12    import org.jconfig.ConfigurationManager;
 13    /**
 14    * test cases for the new category object
 15    * these tests are an extension of the existing test
 16    * cases used in the ConfigurationTest
 17    *
 18    * @since 2.2
 19    * @author Andreas Mecky <andreas.mecky@xcom.de>
 20    * @author Terry Dye <terry.dye@xcom.de>
 21    */
 22    public class AdvancedConfigParserTest extends TestCase {
 23   
 24  0 public AdvancedConfigParserTest(String arg0) {
 25  0 super(arg0);
 26    }
 27   
 28  0 public static void main(String[] args) {
 29  0 junit.textui.TestRunner.run(AdvancedConfigParserTest.class);
 30    }
 31   
 32  0 public void testParseAdvancedConfig() {
 33  0 System.setProperty("jconfig.parser","org.jconfig.parser.AdvancedConfigParser");
 34  0 Configuration config = ConfigurationManager.getConfiguration("advanced");
 35  0 String world = config.getProperty("hello");
 36  0 assertEquals("world",world);
 37    }
 38   
 39    }