numericitemtestcase.java

来自「xbrlapi的源码」· Java 代码 · 共 83 行

JAVA
83
字号
package org.xbrlapi.fragment.tests;import org.xbrlapi.DOMLoadingTestCase;import org.xbrlapi.FragmentList;import org.xbrlapi.NumericItem;/** * Tests the implementation of the org.xbrlapi.NumericItem interface. * Uses the DOM-based data store to ensure rapid testing. * @author Geoffrey Shuetrim (geoff@galexy.net) */public class NumericItemTestCase 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 NumericItemTestCase(String arg0) {		super(arg0);	}	/**	 * Test getting units	 */	public void testGetUnits() {        try {            FragmentList<NumericItem> items = store.<NumericItem>getFragments("SimpleNumericItem");            assertTrue(items.getLength() > 0);            for (NumericItem item: items) {                assertEquals("unit", item.getUnits().getLocalname());            }        } catch (Exception e) {            fail(e.getMessage());        }	}	/**	 * Test getting precision	 */	public void testGetPrecision() {        try {            FragmentList<NumericItem> items = store.<NumericItem>getFragments("SimpleNumericItem");            assertTrue(items.getLength() > 0);            for (NumericItem item: items) {                assertEquals("2", item.getPrecision());                assertEquals(true, item.hasPrecision());            }        } catch (Exception e) {            fail(e.getMessage());        }	}		/**	 * Test getting decimals	 */	public void testGetDecimals() {        try {            FragmentList<NumericItem> items = store.<NumericItem>getFragments("SimpleNumericItem");            assertTrue(items.getLength() > 0);            for (NumericItem item: items) {                assertEquals(false, item.hasDecimals());                try {                    assertEquals("1", item.getDecimals());                    fail("Exception expected when getting decimals for a fact without them");                } catch (Exception e) {                    ;                }            }        } catch (Exception e) {            fail(e.getMessage());        }	}		}

⌨️ 快捷键说明

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