factdimensioncontainertestcase.java
来自「xbrlapi的源码」· Java 代码 · 共 62 行
JAVA
62 行
package org.xbrlapi.fragment.tests;import org.xbrlapi.Context;import org.xbrlapi.DOMLoadingTestCase;import org.xbrlapi.FragmentList;import org.xbrlapi.Unit;/** * Tests the implementation of the org.xbrlapi.FactDimensionContainer interface. * Uses the DOM-based data store to ensure rapid testing. * @author Geoffrey Shuetrim (geoff@galexy.net) */public class FactDimensionContainerTestCase extends DOMLoadingTestCase { private final String STARTING_POINT = "test.data.tuple.instance"; protected void setUp() throws Exception { super.setUp(); loader.discover(this.getURL(STARTING_POINT)); } protected void tearDown() throws Exception { super.tearDown(); } public FactDimensionContainerTestCase(String arg0) { super(arg0); } /** * Test getting the id of a context. */ public void testGetContextId() { try { FragmentList<Context> contexts = store.getFragments("Context"); for (Context context: contexts) { assertEquals(context.getId(), context.getDataRootElement().getAttribute("id")); } } catch (Exception e) { e.printStackTrace(); fail(e.getMessage()); } } /** * Test getting the id of a unit. */ public void testGetUnitId() { try { FragmentList<Unit> units= store.getFragments("Unit"); for (Unit unit: units) { assertEquals(unit.getId(), unit.getDataRootElement().getAttribute("id")); } } catch (Exception e) { e.printStackTrace(); fail(e.getMessage()); } } }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?