ZoieTestCase.java :  » Search » zoie » proj » zoie » test » Java Open Source

Java Open Source » Search » zoie 
zoie » proj » zoie » test » ZoieTestCase.java
package proj.zoie.test;

import junit.framework.TestCase;

public class ZoieTestCase extends TestCase
{
  ZoieTestCase()
  {
    super();
    String confdir = System.getProperty("conf.dir");
    org.apache.log4j.PropertyConfigurator.configure(confdir+"/log4j.properties");
  }
  
  ZoieTestCase(String name)
  {
    super(name);
    String confdir = System.getProperty("conf.dir");
    org.apache.log4j.PropertyConfigurator.configure(confdir+"/log4j.properties");
  }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.