[Test][Ignore("Just used to view nodes")] public void GAAP_Test_GetNodesByPresentation() { TestTaxonomy_2004_06_15 s = new TestTaxonomy_2004_06_15(); s.CurrentLabelRole = "label"; s.CurrentLanguage = "en"; s.Load(US_GAAP_FILE); int errors = 0; s.Parse(out errors); ArrayList nodeList = s.GetNodesByPresentation(); Assert.IsNotNull(nodeList); Assert.AreEqual(5, nodeList.Count); Console.WriteLine("Nodes By Presentation: "); foreach (Node n in nodeList) { Console.WriteLine(TestNode.ToXml(0, n)); } }
public void GAAP_Test_GetNodesByPresentation() { TestTaxonomy_2004_06_15 s = new TestTaxonomy_2004_06_15(); s.CurrentLabelRole = "label"; s.CurrentLanguage = "en"; s.Load( US_GAAP_FILE); int errors = 0; s.Parse( out errors ); ArrayList nodeList = s.GetNodesByPresentation(); Assert.IsNotNull( nodeList ); Assert.AreEqual( 5, nodeList.Count ); Console.WriteLine( "Nodes By Presentation: " ); foreach (Node n in nodeList ) { Console.WriteLine( TestNode.ToXml( 0, n ) ); } }