当前位置: 首页>>代码示例>>C#>>正文


C# XMLToken.getNamespacesLength方法代码示例

本文整理汇总了C#中libsbmlcs.XMLToken.getNamespacesLength方法的典型用法代码示例。如果您正苦于以下问题:C# XMLToken.getNamespacesLength方法的具体用法?C# XMLToken.getNamespacesLength怎么用?C# XMLToken.getNamespacesLength使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在libsbmlcs.XMLToken的用法示例。


在下文中一共展示了XMLToken.getNamespacesLength方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: test_XMLToken_newSetters_setNamespaces2

 public void test_XMLToken_newSetters_setNamespaces2()
 {
     int i;
       XMLTriple triple = new  XMLTriple("test","","");
       XMLToken token = new  XMLToken(triple);
       XMLNamespaces ns = new  XMLNamespaces();
       assertTrue( token.getNamespacesLength() == 0 );
       assertTrue( token.isNamespacesEmpty() == true );
       ns.add( "http://test1.org/", "test1");
       i = token.setNamespaces(ns);
       assertTrue( i == libsbml.LIBSBML_INVALID_XML_OPERATION );
       assertTrue( token.getNamespacesLength() == 0 );
       assertTrue( token.isNamespacesEmpty() == true );
       triple = null;
       token = null;
       ns = null;
 }
开发者ID:yarden,项目名称:roadrunner,代码行数:17,代码来源:TestXMLToken_newSetters.cs

示例2: test_XMLToken_newSetters_addNamespaces1

 public void test_XMLToken_newSetters_addNamespaces1()
 {
     XMLTriple triple = new  XMLTriple("test","","");
       XMLAttributes attr = new  XMLAttributes();
       XMLToken token = new  XMLToken(triple,attr);
       assertTrue( token.getNamespacesLength() == 0 );
       assertTrue( token.isNamespacesEmpty() == true );
       int i = token.addNamespace( "http://test1.org/", "test1");
       assertTrue( i == libsbml.LIBSBML_OPERATION_SUCCESS );
       assertTrue( token.getNamespacesLength() == 1 );
       assertTrue( token.isNamespacesEmpty() == false );
       attr = null;
       triple = null;
       token = null;
 }
开发者ID:yarden,项目名称:roadrunner,代码行数:15,代码来源:TestXMLToken_newSetters.cs

示例3: test_XMLToken_newSetters_removeNamespaces1

 public void test_XMLToken_newSetters_removeNamespaces1()
 {
     XMLTriple triple = new  XMLTriple("test","","");
       XMLAttributes attr = new  XMLAttributes();
       XMLToken token = new  XMLToken(triple,attr);
       token.addNamespace( "http://test1.org/", "test1");
       assertTrue( token.getNamespacesLength() == 1 );
       int i = token.removeNamespace( "test2");
       assertTrue( i == libsbml.LIBSBML_INDEX_EXCEEDS_SIZE );
       assertTrue( token.getNamespacesLength() == 1 );
       i = token.removeNamespace( "test1");
       assertTrue( i == libsbml.LIBSBML_OPERATION_SUCCESS );
       assertTrue( token.getNamespacesLength() == 0 );
       token = null;
       triple = null;
       attr = null;
 }
开发者ID:yarden,项目名称:roadrunner,代码行数:17,代码来源:TestXMLToken_newSetters.cs

示例4: test_XMLToken_namespace_set_clear

 public void test_XMLToken_namespace_set_clear()
 {
     XMLTriple triple = new  XMLTriple("test","","");
       XMLAttributes attr = new  XMLAttributes();
       XMLToken token = new  XMLToken(triple,attr);
       XMLNamespaces ns = new  XMLNamespaces();
       assertTrue( token.getNamespacesLength() == 0 );
       assertTrue( token.isNamespacesEmpty() == true );
       ns.add( "http://test1.org/", "test1");
       ns.add( "http://test2.org/", "test2");
       ns.add( "http://test3.org/", "test3");
       ns.add( "http://test4.org/", "test4");
       ns.add( "http://test5.org/", "test5");
       token.setNamespaces(ns);
       assertTrue( token.getNamespacesLength() == 5 );
       assertTrue( token.isNamespacesEmpty() == false );
       assertTrue( (  "test1" != token.getNamespacePrefix(0) ) == false );
       assertTrue( (  "test2" != token.getNamespacePrefix(1) ) == false );
       assertTrue( (  "test3" != token.getNamespacePrefix(2) ) == false );
       assertTrue( (  "test4" != token.getNamespacePrefix(3) ) == false );
       assertTrue( (  "test5" != token.getNamespacePrefix(4) ) == false );
       assertTrue( (  "http://test1.org/" != token.getNamespaceURI(0) ) == false );
       assertTrue( (  "http://test2.org/" != token.getNamespaceURI(1) ) == false );
       assertTrue( (  "http://test3.org/" != token.getNamespaceURI(2) ) == false );
       assertTrue( (  "http://test4.org/" != token.getNamespaceURI(3) ) == false );
       assertTrue( (  "http://test5.org/" != token.getNamespaceURI(4) ) == false );
       token.clearNamespaces();
       assertTrue( token.getNamespacesLength() == 0 );
       ns = null;
       token = null;
       triple = null;
       attr = null;
 }
开发者ID:0u812,项目名称:roadrunner-backup,代码行数:33,代码来源:TestXMLToken.cs

示例5: test_XMLToken_namespace_remove_by_prefix

 public void test_XMLToken_namespace_remove_by_prefix()
 {
     XMLTriple triple = new  XMLTriple("test","","");
       XMLAttributes attr = new  XMLAttributes();
       XMLToken token = new  XMLToken(triple,attr);
       token.addNamespace( "http://test1.org/", "test1");
       token.addNamespace( "http://test2.org/", "test2");
       token.addNamespace( "http://test3.org/", "test3");
       token.addNamespace( "http://test4.org/", "test4");
       token.addNamespace( "http://test5.org/", "test5");
       assertTrue( token.getNamespacesLength() == 5 );
       token.removeNamespace( "test1");
       assertTrue( token.getNamespacesLength() == 4 );
       token.removeNamespace( "test2");
       assertTrue( token.getNamespacesLength() == 3 );
       token.removeNamespace( "test3");
       assertTrue( token.getNamespacesLength() == 2 );
       token.removeNamespace( "test4");
       assertTrue( token.getNamespacesLength() == 1 );
       token.removeNamespace( "test5");
       assertTrue( token.getNamespacesLength() == 0 );
       token.addNamespace( "http://test1.org/", "test1");
       token.addNamespace( "http://test2.org/", "test2");
       token.addNamespace( "http://test3.org/", "test3");
       token.addNamespace( "http://test4.org/", "test4");
       token.addNamespace( "http://test5.org/", "test5");
       assertTrue( token.getNamespacesLength() == 5 );
       token.removeNamespace( "test5");
       assertTrue( token.getNamespacesLength() == 4 );
       token.removeNamespace( "test4");
       assertTrue( token.getNamespacesLength() == 3 );
       token.removeNamespace( "test3");
       assertTrue( token.getNamespacesLength() == 2 );
       token.removeNamespace( "test2");
       assertTrue( token.getNamespacesLength() == 1 );
       token.removeNamespace( "test1");
       assertTrue( token.getNamespacesLength() == 0 );
       token.addNamespace( "http://test1.org/", "test1");
       token.addNamespace( "http://test2.org/", "test2");
       token.addNamespace( "http://test3.org/", "test3");
       token.addNamespace( "http://test4.org/", "test4");
       token.addNamespace( "http://test5.org/", "test5");
       assertTrue( token.getNamespacesLength() == 5 );
       token.removeNamespace( "test3");
       assertTrue( token.getNamespacesLength() == 4 );
       token.removeNamespace( "test1");
       assertTrue( token.getNamespacesLength() == 3 );
       token.removeNamespace( "test4");
       assertTrue( token.getNamespacesLength() == 2 );
       token.removeNamespace( "test5");
       assertTrue( token.getNamespacesLength() == 1 );
       token.removeNamespace( "test2");
       assertTrue( token.getNamespacesLength() == 0 );
       token = null;
       triple = null;
       attr = null;
 }
开发者ID:0u812,项目名称:roadrunner-backup,代码行数:57,代码来源:TestXMLToken.cs

示例6: test_XMLToken_namespace_get

 public void test_XMLToken_namespace_get()
 {
     XMLTriple triple = new  XMLTriple("test","","");
       XMLAttributes attr = new  XMLAttributes();
       XMLToken token = new  XMLToken(triple,attr);
       token.addNamespace( "http://test1.org/", "test1");
       token.addNamespace( "http://test2.org/", "test2");
       token.addNamespace( "http://test3.org/", "test3");
       token.addNamespace( "http://test4.org/", "test4");
       token.addNamespace( "http://test5.org/", "test5");
       token.addNamespace( "http://test6.org/", "test6");
       token.addNamespace( "http://test7.org/", "test7");
       token.addNamespace( "http://test8.org/", "test8");
       token.addNamespace( "http://test9.org/", "test9");
       assertTrue( token.getNamespacesLength() == 9 );
       assertTrue( token.getNamespaceIndex( "http://test1.org/") == 0 );
       assertTrue( (  "test2" != token.getNamespacePrefix(1) ) == false );
       assertTrue( ( 		      "test1" != token.getNamespacePrefix( "http://test1.org/") ) == false );
       assertTrue( (  "http://test2.org/" != token.getNamespaceURI(1) ) == false );
       assertTrue( ( 		      "http://test2.org/" != token.getNamespaceURI( "test2") ) == false );
       assertTrue( token.getNamespaceIndex( "http://test1.org/") == 0 );
       assertTrue( token.getNamespaceIndex( "http://test2.org/") == 1 );
       assertTrue( token.getNamespaceIndex( "http://test5.org/") == 4 );
       assertTrue( token.getNamespaceIndex( "http://test9.org/") == 8 );
       assertTrue( token.getNamespaceIndex( "http://testX.org/") == -1 );
       assertTrue( token.hasNamespaceURI( "http://test1.org/") != false );
       assertTrue( token.hasNamespaceURI( "http://test2.org/") != false );
       assertTrue( token.hasNamespaceURI( "http://test5.org/") != false );
       assertTrue( token.hasNamespaceURI( "http://test9.org/") != false );
       assertTrue( token.hasNamespaceURI( "http://testX.org/") == false );
       assertTrue( token.getNamespaceIndexByPrefix( "test1") == 0 );
       assertTrue( token.getNamespaceIndexByPrefix( "test5") == 4 );
       assertTrue( token.getNamespaceIndexByPrefix( "test9") == 8 );
       assertTrue( token.getNamespaceIndexByPrefix( "testX") == -1 );
       assertTrue( token.hasNamespacePrefix( "test1") != false );
       assertTrue( token.hasNamespacePrefix( "test5") != false );
       assertTrue( token.hasNamespacePrefix( "test9") != false );
       assertTrue( token.hasNamespacePrefix( "testX") == false );
       assertTrue( token.hasNamespaceNS( "http://test1.org/", "test1") != false );
       assertTrue( token.hasNamespaceNS( "http://test5.org/", "test5") != false );
       assertTrue( token.hasNamespaceNS( "http://test9.org/", "test9") != false );
       assertTrue( token.hasNamespaceNS( "http://testX.org/", "testX") == false );
       token = null;
       triple = null;
       attr = null;
 }
开发者ID:0u812,项目名称:roadrunner-backup,代码行数:46,代码来源:TestXMLToken.cs

示例7: test_XMLToken_namespace_add

 public void test_XMLToken_namespace_add()
 {
     XMLTriple triple = new  XMLTriple("test","","");
       XMLAttributes attr = new  XMLAttributes();
       XMLToken token = new  XMLToken(triple,attr);
       assertTrue( token.getNamespacesLength() == 0 );
       assertTrue( token.isNamespacesEmpty() == true );
       token.addNamespace( "http://test1.org/", "test1");
       assertTrue( token.getNamespacesLength() == 1 );
       assertTrue( token.isNamespacesEmpty() == false );
       token.addNamespace( "http://test2.org/", "test2");
       assertTrue( token.getNamespacesLength() == 2 );
       assertTrue( token.isNamespacesEmpty() == false );
       token.addNamespace( "http://test1.org/", "test1a");
       assertTrue( token.getNamespacesLength() == 3 );
       assertTrue( token.isNamespacesEmpty() == false );
       token.addNamespace( "http://test1.org/", "test1a");
       assertTrue( token.getNamespacesLength() == 3 );
       assertTrue( token.isNamespacesEmpty() == false );
       assertTrue( ! (token.getNamespaceIndex( "http://test1.org/") == -1) );
       token = null;
       triple = null;
       attr = null;
 }
开发者ID:0u812,项目名称:roadrunner-backup,代码行数:24,代码来源:TestXMLToken.cs


注:本文中的libsbmlcs.XMLToken.getNamespacesLength方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。