HWDBTestCase2

来源:互联网 发布:https绑定域名iis 编辑:程序博客网 时间:2024/06/06 01:39

static Logger logger = Logger.getLogger(HWDBTestCase.class);
   
    public HWDBTestCase()
    {
        super();
        TestConfig.instance();
    }
   
    public HWDBTestCase(String name)
    {
        super(name);
        TestConfig.instance();
    }
   
    public abstract String[] getTopengTable();
   
    public abstract String[] getBillingTable();
   
    public abstract String[] getCcareTable();
   
    public abstract String[] getReportTable();
   
    protected IDataSet getDataSet() throws DataSetException,
            FileNotFoundException
    {
        if ("".equals(fileName))
        {
            return null;
        }
       
        return new XmlDataSet(new FileInputStream(fileName));
    }
   

原创粉丝点击