⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 basetestcase.java

📁 xbrlapi的源码
💻 JAVA
字号:
package org.xbrlapi.data.resource.tests;import java.io.File;import org.xbrlapi.cache.CacheImpl;import org.xbrlapi.data.resource.Matcher;/** * Provides a base test case for tests involving the XML DOM data store. * @author Geoffrey Shuetrim (geoff@galexy.net) */public abstract class BaseTestCase extends org.xbrlapi.utilities.BaseTestCase {        protected Matcher matcher = null;    protected CacheImpl cache = null;	protected String cacheLocation = configuration.getProperty("local.cache");	protected void setUp() throws Exception {		super.setUp();		File cacheFile = new File(cacheLocation);        cache = new CacheImpl(cacheFile);	}		protected void tearDown() throws Exception {		super.tearDown();	}		public BaseTestCase(String arg0) {		super(arg0);	}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -