/// /// @file TestSBase.cs /// @brief SBase unit tests /// @author Frank Bergmann (Csharp conversion) /// @author Akiya Jouraku (Csharp conversion) /// @author Ben Bornstein /// /// $Id: TestSBase.cs 9830 2009-07-17 18:35:36Z ajouraku $ /// $HeadURL: https://sbml.svn.sourceforge.net/svnroot/sbml/trunk/libsbml/src/bindings/csharp/test/sbml/TestSBase.cs $ /// /// This test file was converted from src/sbml/test/TestSBase.cpp /// with the help of conversion sciprt (ctest_converter.pl). /// /// */ namespace LibSBMLCSTest { using libsbml; using System.IO; public class TestSBase { public class AssertionError : System.Exception { public AssertionError() : base() { } } static void assertTrue(bool condition) { if (condition == true) { return; } throw new AssertionError(); } static void assertEquals(object a, object b) { if ( (a == null) && (b == null) ) { return; } else if (a.Equals(b)) { return; } throw new AssertionError(); } static void assertNotEquals(object a, object b) { if ( (a == null) && (b == null) ) { throw new AssertionError(); } else if (a.Equals(b)) { throw new AssertionError(); } } static void assertEquals(bool a, bool b) { if ( a == b ) { return; } throw new AssertionError(); } static void assertNotEquals(bool a, bool b) { if ( a != b ) { return; } throw new AssertionError(); } static void assertEquals(int a, int b) { if ( a == b ) { return; } throw new AssertionError(); } static void assertNotEquals(int a, int b) { if ( a != b ) { return; } throw new AssertionError(); } private SBase S; public void setUp() { S = new Model(); if (S == null); { } } public void tearDown() { } public void test_SBase_CVTerms() { CVTerm cv = new CVTerm(libsbml.BIOLOGICAL_QUALIFIER); assertTrue( S.getNumCVTerms() == 0 ); assertTrue( S.getCVTerms() == null ); S.setMetaId( "sbase1"); S.addCVTerm(cv); assertTrue( S.getNumCVTerms() == 1 ); assertTrue( S.getCVTerms() != null ); assertTrue( S.getCVTerm(0) != cv ); cv = null; } public void test_SBase_addCVTerms() { CVTerm cv = new CVTerm(libsbml.BIOLOGICAL_QUALIFIER); cv.setBiologicalQualifierType(libsbml.BQB_ENCODES); cv.addResource( "foo"); S.setMetaId( "sbase1"); S.addCVTerm(cv); assertTrue( S.getNumCVTerms() == 1 ); assertTrue( S.getCVTerms() != null ); XMLAttributes res = S.getCVTerm(0).getResources(); assertTrue(( "foo" == res.getValue(0) )); CVTerm cv1 = new CVTerm(libsbml.BIOLOGICAL_QUALIFIER); cv1.setBiologicalQualifierType(libsbml.BQB_IS); cv1.addResource( "bar"); S.addCVTerm(cv1); assertTrue( S.getNumCVTerms() == 2 ); CVTerm cv2 = new CVTerm(libsbml.BIOLOGICAL_QUALIFIER); cv2.setBiologicalQualifierType(libsbml.BQB_IS); cv2.addResource( "bar1"); S.addCVTerm(cv2); assertTrue( S.getNumCVTerms() == 2 ); res = S.getCVTerm(1).getResources(); assertTrue( res.getLength() == 2 ); assertTrue(( "bar" == res.getValue(0) )); assertTrue(( "bar1" == res.getValue(1) )); CVTerm cv4 = new CVTerm(libsbml.BIOLOGICAL_QUALIFIER); cv4.setBiologicalQualifierType(libsbml.BQB_IS); cv4.addResource( "bar1"); S.addCVTerm(cv4); assertTrue( S.getNumCVTerms() == 2 ); res = S.getCVTerm(1).getResources(); assertTrue( res.getLength() == 2 ); assertTrue(( "bar" == res.getValue(0) )); assertTrue(( "bar1" == res.getValue(1) )); CVTerm cv5 = new CVTerm(libsbml.BIOLOGICAL_QUALIFIER); cv5.setBiologicalQualifierType(libsbml.BQB_HAS_PART); cv5.addResource( "bar1"); S.addCVTerm(cv5); assertTrue( S.getNumCVTerms() == 2 ); res = S.getCVTerm(1).getResources(); assertTrue( res.getLength() == 2 ); assertTrue(( "bar" == res.getValue(0) )); assertTrue(( "bar1" == res.getValue(1) )); cv = null; cv2 = null; cv1 = null; cv4 = null; } public void test_SBase_appendNotes() { XMLToken token; XMLNode node; XMLToken token1; XMLNode node1; XMLNode node2; XMLTriple triple = new XMLTriple("p", "", ""); XMLAttributes att = new XMLAttributes(); XMLNamespaces ns = new XMLNamespaces(); ns.add( "http://www.w3.org/1999/xhtml", ""); XMLToken token4 = new XMLToken("This is my text"); XMLNode node4 = new XMLNode(token4); XMLToken token5 = new XMLToken("This is additional text"); XMLNode node5 = new XMLNode(token5); token = new XMLToken(triple,att,ns); node = new XMLNode(token); node.addChild(node4); S.setNotes(node); assertTrue( S.isSetNotes() == true ); token1 = new XMLToken(triple,att,ns); node1 = new XMLNode(token1); node1.addChild(node5); S.appendNotes(node1); assertTrue( S.isSetNotes() == true ); node2 = S.getNotes(); assertTrue( node2.getNumChildren() == 2 ); assertTrue(( "p" == node2.getChild(0).getName() )); assertTrue( node2.getChild(0).getNumChildren() == 1 ); assertTrue(( "p" == node2.getChild(1).getName() )); assertTrue( node2.getChild(1).getNumChildren() == 1 ); string chars1 = node2.getChild(0).getChild(0).getCharacters(); string chars2 = node2.getChild(1).getChild(0).getCharacters(); assertTrue(( "This is my text" == chars1 )); assertTrue(( "This is additional text" == chars2 )); node = null; node1 = null; } public void test_SBase_appendNotes1() { XMLAttributes att = new XMLAttributes(); XMLNamespaces ns = new XMLNamespaces(); ns.add( "http://www.w3.org/1999/xhtml", ""); XMLTriple html_triple = new XMLTriple("html", "", ""); XMLTriple head_triple = new XMLTriple("head", "", ""); XMLTriple body_triple = new XMLTriple("body", "", ""); XMLTriple p_triple = new XMLTriple("p", "", ""); XMLToken html_token = new XMLToken(html_triple,att,ns); XMLToken head_token = new XMLToken(head_triple,att); XMLToken body_token = new XMLToken(body_triple,att); XMLToken p_token = new XMLToken(p_triple,att); XMLToken text_token = new XMLToken("This is my text"); XMLNode html_node = new XMLNode(html_token); XMLNode head_node = new XMLNode(head_token); XMLNode body_node = new XMLNode(body_token); XMLNode p_node = new XMLNode(p_token); XMLNode text_node = new XMLNode(text_token); XMLToken text_token1 = new XMLToken("This is more text"); XMLNode html_node1 = new XMLNode(html_token); XMLNode head_node1 = new XMLNode(head_token); XMLNode body_node1 = new XMLNode(body_token); XMLNode p_node1 = new XMLNode(p_token); XMLNode text_node1 = new XMLNode(text_token1); XMLNode notes; XMLNode child,child1; p_node.addChild(text_node); body_node.addChild(p_node); html_node.addChild(head_node); html_node.addChild(body_node); p_node1.addChild(text_node1); body_node1.addChild(p_node1); html_node1.addChild(head_node1); html_node1.addChild(body_node1); S.setNotes(html_node); S.appendNotes(html_node1); notes = S.getNotes(); assertTrue(( "notes" == notes.getName() )); assertTrue( notes.getNumChildren() == 1 ); child = notes.getChild(0); assertTrue(( "html" == child.getName() )); assertTrue( child.getNumChildren() == 2 ); child = child.getChild(1); assertTrue(( "body" == child.getName() )); assertTrue( child.getNumChildren() == 2 ); child1 = child.getChild(0); assertTrue(( "p" == child1.getName() )); assertTrue( child1.getNumChildren() == 1 ); child1 = child1.getChild(0); assertTrue(( "This is my text" == child1.getCharacters() )); assertTrue( child1.getNumChildren() == 0 ); child1 = child.getChild(1); assertTrue(( "p" == child1.getName() )); assertTrue( child1.getNumChildren() == 1 ); child1 = child1.getChild(0); assertTrue(( "This is more text" == child1.getCharacters() )); assertTrue( child1.getNumChildren() == 0 ); att = null; ns = null; html_triple = null; head_triple = null; body_triple = null; p_triple = null; html_token = null; head_token = null; body_token = null; p_token = null; text_token = null; text_token1 = null; html_node = null; head_node = null; body_node = null; p_node = null; text_node = null; html_node1 = null; head_node1 = null; body_node1 = null; p_node1 = null; text_node1 = null; } public void test_SBase_appendNotes2() { XMLAttributes att = new XMLAttributes(); XMLNamespaces ns = new XMLNamespaces(); ns.add( "http://www.w3.org/1999/xhtml", ""); XMLTriple html_triple = new XMLTriple("html", "", ""); XMLTriple head_triple = new XMLTriple("head", "", ""); XMLTriple body_triple = new XMLTriple("body", "", ""); XMLTriple p_triple = new XMLTriple("p", "", ""); XMLToken html_token = new XMLToken(html_triple,att,ns); XMLToken head_token = new XMLToken(head_triple,att); XMLToken body_token = new XMLToken(body_triple,att); XMLToken p_token = new XMLToken(p_triple,att); XMLToken text_token = new XMLToken("This is my text"); XMLNode html_node = new XMLNode(html_token); XMLNode head_node = new XMLNode(head_token); XMLNode body_node = new XMLNode(body_token); XMLNode p_node = new XMLNode(p_token); XMLNode text_node = new XMLNode(text_token); XMLToken body_token1 = new XMLToken(body_triple,att,ns); XMLToken text_token1 = new XMLToken("This is more text"); XMLNode body_node1 = new XMLNode(body_token1); XMLNode p_node1 = new XMLNode(p_token); XMLNode text_node1 = new XMLNode(text_token1); XMLNode notes; XMLNode child,child1; p_node.addChild(text_node); body_node.addChild(p_node); html_node.addChild(head_node); html_node.addChild(body_node); p_node1.addChild(text_node1); body_node1.addChild(p_node1); S.setNotes(html_node); S.appendNotes(body_node1); notes = S.getNotes(); assertTrue(( "notes" == notes.getName() )); assertTrue( notes.getNumChildren() == 1 ); child = notes.getChild(0); assertTrue(( "html" == child.getName() )); assertTrue( child.getNumChildren() == 2 ); child = child.getChild(1); assertTrue(( "body" == child.getName() )); assertTrue( child.getNumChildren() == 2 ); child1 = child.getChild(0); assertTrue(( "p" == child1.getName() )); assertTrue( child1.getNumChildren() == 1 ); child1 = child1.getChild(0); assertTrue(( "This is my text" == child1.getCharacters() )); assertTrue( child1.getNumChildren() == 0 ); child1 = child.getChild(1); assertTrue(( "p" == child1.getName() )); assertTrue( child1.getNumChildren() == 1 ); child1 = child1.getChild(0); assertTrue(( "This is more text" == child1.getCharacters() )); assertTrue( child1.getNumChildren() == 0 ); att = null; ns = null; html_triple = null; head_triple = null; body_triple = null; p_triple = null; html_token = null; head_token = null; body_token = null; p_token = null; text_token = null; text_token1 = null; body_token1 = null; html_node = null; head_node = null; body_node = null; p_node = null; text_node = null; body_node1 = null; p_node1 = null; text_node1 = null; } public void test_SBase_appendNotes3() { XMLAttributes att = new XMLAttributes(); XMLNamespaces ns = new XMLNamespaces(); ns.add( "http://www.w3.org/1999/xhtml", ""); XMLTriple html_triple = new XMLTriple("html", "", ""); XMLTriple head_triple = new XMLTriple("head", "", ""); XMLTriple body_triple = new XMLTriple("body", "", ""); XMLTriple p_triple = new XMLTriple("p", "", ""); XMLToken html_token = new XMLToken(html_triple,att,ns); XMLToken head_token = new XMLToken(head_triple,att); XMLToken body_token = new XMLToken(body_triple,att); XMLToken p_token = new XMLToken(p_triple,att); XMLToken text_token = new XMLToken("This is my text"); XMLNode html_node = new XMLNode(html_token); XMLNode head_node = new XMLNode(head_token); XMLNode body_node = new XMLNode(body_token); XMLNode p_node = new XMLNode(p_token); XMLNode text_node = new XMLNode(text_token); XMLToken p_token1 = new XMLToken(p_triple,att,ns); XMLToken text_token1 = new XMLToken("This is more text"); XMLNode p_node1 = new XMLNode(p_token1); XMLNode text_node1 = new XMLNode(text_token1); XMLNode notes; XMLNode child,child1; p_node.addChild(text_node); body_node.addChild(p_node); html_node.addChild(head_node); html_node.addChild(body_node); p_node1.addChild(text_node1); S.setNotes(html_node); S.appendNotes(p_node1); notes = S.getNotes(); assertTrue(( "notes" == notes.getName() )); assertTrue( notes.getNumChildren() == 1 ); child = notes.getChild(0); assertTrue(( "html" == child.getName() )); assertTrue( child.getNumChildren() == 2 ); child = child.getChild(1); assertTrue(( "body" == child.getName() )); assertTrue( child.getNumChildren() == 2 ); child1 = child.getChild(0); assertTrue(( "p" == child1.getName() )); assertTrue( child1.getNumChildren() == 1 ); child1 = child1.getChild(0); assertTrue(( "This is my text" == child1.getCharacters() )); assertTrue( child1.getNumChildren() == 0 ); child1 = child.getChild(1); assertTrue(( "p" == child1.getName() )); assertTrue( child1.getNumChildren() == 1 ); child1 = child1.getChild(0); assertTrue(( "This is more text" == child1.getCharacters() )); assertTrue( child1.getNumChildren() == 0 ); att = null; ns = null; html_triple = null; head_triple = null; body_triple = null; p_triple = null; html_token = null; head_token = null; body_token = null; p_token = null; text_token = null; text_token1 = null; p_token1 = null; html_node = null; head_node = null; body_node = null; p_node = null; text_node = null; p_node1 = null; text_node1 = null; } public void test_SBase_appendNotes4() { XMLAttributes att = new XMLAttributes(); XMLNamespaces ns = new XMLNamespaces(); ns.add( "http://www.w3.org/1999/xhtml", ""); XMLTriple html_triple = new XMLTriple("html", "", ""); XMLTriple head_triple = new XMLTriple("head", "", ""); XMLTriple body_triple = new XMLTriple("body", "", ""); XMLTriple p_triple = new XMLTriple("p", "", ""); XMLToken html_token = new XMLToken(html_triple,att,ns); XMLToken head_token = new XMLToken(head_triple,att); XMLToken body_token = new XMLToken(body_triple,att); XMLToken p_token = new XMLToken(p_triple,att); XMLToken body_token1 = new XMLToken(body_triple,att,ns); XMLToken text_token = new XMLToken("This is my text"); XMLNode body_node = new XMLNode(body_token1); XMLNode p_node = new XMLNode(p_token); XMLNode text_node = new XMLNode(text_token); XMLToken text_token1 = new XMLToken("This is more text"); XMLNode html_node1 = new XMLNode(html_token); XMLNode head_node1 = new XMLNode(head_token); XMLNode body_node1 = new XMLNode(body_token); XMLNode p_node1 = new XMLNode(p_token); XMLNode text_node1 = new XMLNode(text_token1); XMLNode notes; XMLNode child,child1; p_node.addChild(text_node); body_node.addChild(p_node); p_node1.addChild(text_node1); body_node1.addChild(p_node1); html_node1.addChild(head_node1); html_node1.addChild(body_node1); S.setNotes(body_node); S.appendNotes(html_node1); notes = S.getNotes(); assertTrue(( "notes" == notes.getName() )); assertTrue( notes.getNumChildren() == 1 ); child = notes.getChild(0); assertTrue(( "html" == child.getName() )); assertTrue( child.getNumChildren() == 2 ); child = child.getChild(1); assertTrue(( "body" == child.getName() )); assertTrue( child.getNumChildren() == 2 ); child1 = child.getChild(0); assertTrue(( "p" == child1.getName() )); assertTrue( child1.getNumChildren() == 1 ); child1 = child1.getChild(0); assertTrue(( "This is my text" == child1.getCharacters() )); assertTrue( child1.getNumChildren() == 0 ); child1 = child.getChild(1); assertTrue(( "p" == child1.getName() )); assertTrue( child1.getNumChildren() == 1 ); child1 = child1.getChild(0); assertTrue(( "This is more text" == child1.getCharacters() )); assertTrue( child1.getNumChildren() == 0 ); att = null; ns = null; html_triple = null; head_triple = null; body_triple = null; p_triple = null; body_token = null; p_token = null; text_token = null; text_token1 = null; body_token1 = null; body_node = null; p_node = null; text_node = null; html_node1 = null; head_node1 = null; body_node1 = null; p_node1 = null; text_node1 = null; } public void test_SBase_appendNotes5() { XMLAttributes att = new XMLAttributes(); XMLNamespaces ns = new XMLNamespaces(); ns.add( "http://www.w3.org/1999/xhtml", ""); XMLTriple html_triple = new XMLTriple("html", "", ""); XMLTriple head_triple = new XMLTriple("head", "", ""); XMLTriple body_triple = new XMLTriple("body", "", ""); XMLTriple p_triple = new XMLTriple("p", "", ""); XMLToken html_token = new XMLToken(html_triple,att,ns); XMLToken head_token = new XMLToken(head_triple,att); XMLToken body_token = new XMLToken(body_triple,att); XMLToken p_token = new XMLToken(p_triple,att); XMLToken p_token1 = new XMLToken(p_triple,att,ns); XMLToken text_token = new XMLToken("This is my text"); XMLNode p_node = new XMLNode(p_token1); XMLNode text_node = new XMLNode(text_token); XMLToken text_token1 = new XMLToken("This is more text"); XMLNode html_node1 = new XMLNode(html_token); XMLNode head_node1 = new XMLNode(head_token); XMLNode body_node1 = new XMLNode(body_token); XMLNode p_node1 = new XMLNode(p_token); XMLNode text_node1 = new XMLNode(text_token1); XMLNode notes; XMLNode child,child1; p_node.addChild(text_node); p_node1.addChild(text_node1); body_node1.addChild(p_node1); html_node1.addChild(head_node1); html_node1.addChild(body_node1); S.setNotes(p_node); S.appendNotes(html_node1); notes = S.getNotes(); assertTrue(( "notes" == notes.getName() )); assertTrue( notes.getNumChildren() == 1 ); child = notes.getChild(0); assertTrue(( "html" == child.getName() )); assertTrue( child.getNumChildren() == 2 ); child = child.getChild(1); assertTrue(( "body" == child.getName() )); assertTrue( child.getNumChildren() == 2 ); child1 = child.getChild(0); assertTrue(( "p" == child1.getName() )); assertTrue( child1.getNumChildren() == 1 ); child1 = child1.getChild(0); assertTrue(( "This is my text" == child1.getCharacters() )); assertTrue( child1.getNumChildren() == 0 ); child1 = child.getChild(1); assertTrue(( "p" == child1.getName() )); assertTrue( child1.getNumChildren() == 1 ); child1 = child1.getChild(0); assertTrue(( "This is more text" == child1.getCharacters() )); assertTrue( child1.getNumChildren() == 0 ); att = null; ns = null; html_triple = null; head_triple = null; body_triple = null; p_triple = null; body_token = null; p_token = null; p_token1 = null; text_token = null; text_token1 = null; p_node = null; text_node = null; html_node1 = null; head_node1 = null; body_node1 = null; p_node1 = null; text_node1 = null; } public void test_SBase_appendNotes6() { XMLAttributes att = new XMLAttributes(); XMLNamespaces ns = new XMLNamespaces(); ns.add( "http://www.w3.org/1999/xhtml", ""); XMLTriple body_triple = new XMLTriple("body", "", ""); XMLTriple p_triple = new XMLTriple("p", "", ""); XMLToken body_token = new XMLToken(body_triple,att,ns); XMLToken p_token = new XMLToken(p_triple,att); XMLToken text_token = new XMLToken("This is my text"); XMLNode body_node = new XMLNode(body_token); XMLNode p_node = new XMLNode(p_token); XMLNode text_node = new XMLNode(text_token); XMLToken text_token1 = new XMLToken("This is more text"); XMLNode body_node1 = new XMLNode(body_token); XMLNode p_node1 = new XMLNode(p_token); XMLNode text_node1 = new XMLNode(text_token1); XMLNode notes; XMLNode child,child1; p_node.addChild(text_node); body_node.addChild(p_node); p_node1.addChild(text_node1); body_node1.addChild(p_node1); S.setNotes(body_node); S.appendNotes(body_node1); notes = S.getNotes(); assertTrue(( "notes" == notes.getName() )); assertTrue( notes.getNumChildren() == 1 ); child = notes.getChild(0); assertTrue(( "body" == child.getName() )); assertTrue( child.getNumChildren() == 2 ); child1 = child.getChild(0); assertTrue(( "p" == child1.getName() )); assertTrue( child1.getNumChildren() == 1 ); child1 = child1.getChild(0); assertTrue(( "This is my text" == child1.getCharacters() )); assertTrue( child1.getNumChildren() == 0 ); child1 = child.getChild(1); assertTrue(( "p" == child1.getName() )); assertTrue( child1.getNumChildren() == 1 ); child1 = child1.getChild(0); assertTrue(( "This is more text" == child1.getCharacters() )); assertTrue( child1.getNumChildren() == 0 ); att = null; ns = null; body_triple = null; p_triple = null; body_token = null; p_token = null; text_token = null; text_token1 = null; body_node = null; p_node = null; text_node = null; body_node1 = null; p_node1 = null; text_node1 = null; } public void test_SBase_appendNotes7() { XMLAttributes att = new XMLAttributes(); XMLNamespaces ns = new XMLNamespaces(); ns.add( "http://www.w3.org/1999/xhtml", ""); XMLTriple body_triple = new XMLTriple("body", "", ""); XMLTriple p_triple = new XMLTriple("p", "", ""); XMLToken body_token = new XMLToken(body_triple,att,ns); XMLToken p_token1 = new XMLToken(p_triple,att,ns); XMLToken text_token = new XMLToken("This is my text"); XMLToken p_token = new XMLToken(p_triple,att); XMLNode p_node = new XMLNode(p_token1); XMLNode text_node = new XMLNode(text_token); XMLToken text_token1 = new XMLToken("This is more text"); XMLNode body_node1 = new XMLNode(body_token); XMLNode p_node1 = new XMLNode(p_token); XMLNode text_node1 = new XMLNode(text_token1); XMLNode notes; XMLNode child,child1; p_node.addChild(text_node); p_node1.addChild(text_node1); body_node1.addChild(p_node1); S.setNotes(p_node); S.appendNotes(body_node1); notes = S.getNotes(); assertTrue(( "notes" == notes.getName() )); assertTrue( notes.getNumChildren() == 1 ); child = notes.getChild(0); assertTrue(( "body" == child.getName() )); assertTrue( child.getNumChildren() == 2 ); child1 = child.getChild(0); assertTrue(( "p" == child1.getName() )); assertTrue( child1.getNumChildren() == 1 ); child1 = child1.getChild(0); assertTrue(( "This is my text" == child1.getCharacters() )); assertTrue( child1.getNumChildren() == 0 ); child1 = child.getChild(1); assertTrue(( "p" == child1.getName() )); assertTrue( child1.getNumChildren() == 1 ); child1 = child1.getChild(0); assertTrue(( "This is more text" == child1.getCharacters() )); assertTrue( child1.getNumChildren() == 0 ); att = null; ns = null; body_triple = null; p_triple = null; body_token = null; p_token = null; p_token1 = null; text_token = null; text_token1 = null; p_node = null; text_node = null; body_node1 = null; p_node1 = null; text_node1 = null; } public void test_SBase_appendNotes8() { XMLAttributes att = new XMLAttributes(); XMLNamespaces ns = new XMLNamespaces(); ns.add( "http://www.w3.org/1999/xhtml", ""); XMLTriple body_triple = new XMLTriple("body", "", ""); XMLTriple p_triple = new XMLTriple("p", "", ""); XMLToken body_token = new XMLToken(body_triple,att,ns); XMLToken p_token = new XMLToken(p_triple,att); XMLToken text_token = new XMLToken("This is my text"); XMLNode body_node = new XMLNode(body_token); XMLNode p_node = new XMLNode(p_token); XMLNode text_node = new XMLNode(text_token); XMLToken p_token1 = new XMLToken(p_triple,att,ns); XMLToken text_token1 = new XMLToken("This is more text"); XMLNode p_node1 = new XMLNode(p_token1); XMLNode text_node1 = new XMLNode(text_token1); XMLNode notes; XMLNode child,child1; p_node.addChild(text_node); body_node.addChild(p_node); p_node1.addChild(text_node1); S.setNotes(body_node); S.appendNotes(p_node1); notes = S.getNotes(); assertTrue(( "notes" == notes.getName() )); assertTrue( notes.getNumChildren() == 1 ); child = notes.getChild(0); assertTrue(( "body" == child.getName() )); assertTrue( child.getNumChildren() == 2 ); child1 = child.getChild(0); assertTrue(( "p" == child1.getName() )); assertTrue( child1.getNumChildren() == 1 ); child1 = child1.getChild(0); assertTrue(( "This is my text" == child1.getCharacters() )); assertTrue( child1.getNumChildren() == 0 ); child1 = child.getChild(1); assertTrue(( "p" == child1.getName() )); assertTrue( child1.getNumChildren() == 1 ); child1 = child1.getChild(0); assertTrue(( "This is more text" == child1.getCharacters() )); assertTrue( child1.getNumChildren() == 0 ); att = null; ns = null; body_triple = null; p_triple = null; body_token = null; p_token = null; text_token = null; text_token1 = null; p_token1 = null; body_node = null; p_node = null; text_node = null; p_node1 = null; text_node1 = null; } public void test_SBase_appendNotesString() { string notes = "

This is a test note

";; string taggednewnotes = "\n" + "

This is a test note

\n" + "

This is more test notes

\n" + "
"; string taggednewnotes2 = "\n" + "

This is a test note

\n" + "

This is more test notes 1

\n" + "

This is more test notes 2

\n" + "
"; string newnotes = "

This is more test notes

";; string newnotes2 = "

This is more test notes 1

" + "

This is more test notes 2

";; string newnotes3 = "\n" + "

This is more test notes

\n" + "
";; string newnotes4 = "\n" + "

This is more test notes 1

\n" + "

This is more test notes 2

\n" + "
"; S.setNotes(notes); assertTrue( S.isSetNotes() == true ); S.appendNotes(newnotes); string notes1 = S.getNotesString(); assertTrue( S.isSetNotes() == true ); assertTrue(( notes1 == taggednewnotes )); S.setNotes(notes); S.appendNotes(newnotes2); string notes2 = S.getNotesString(); assertTrue( S.isSetNotes() == true ); assertTrue(( notes2 == taggednewnotes2 )); S.setNotes(notes); S.appendNotes(newnotes3); string notes3 = S.getNotesString(); assertTrue( S.isSetNotes() == true ); assertTrue(( notes3 == taggednewnotes )); S.setNotes(notes); S.appendNotes(newnotes4); string notes4 = S.getNotesString(); assertTrue( S.isSetNotes() == true ); assertTrue(( notes4 == taggednewnotes2 )); } public void test_SBase_appendNotesString1() { string notes = "\n" + " \n" + " \n" + " </head>\n" + " <body>\n" + " <p>This is a test note </p>\n" + " </body>\n" + "</html>"; string taggednewnotes = "<notes>\n" + " <html xmlns=\"http://www.w3.org/1999/xhtml\">\n" + " <head>\n" + " <title/>\n" + " </head>\n" + " <body>\n" + " <p>This is a test note </p>\n" + " <p>This is more test notes </p>\n" + " </body>\n" + " </html>\n" + "</notes>"; string addnotes = "<html xmlns=\"http://www.w3.org/1999/xhtml\">\n" + " <head>\n" + " <title/>\n" + " </head>\n" + " <body>\n" + " <p>This is more test notes </p>\n" + " </body>\n" + "</html>"; string addnotes2 = "<notes>\n" + " <html xmlns=\"http://www.w3.org/1999/xhtml\">\n" + " <head>\n" + " <title/>\n" + " </head>\n" + " <body>\n" + " <p>This is more test notes </p>\n" + " </body>\n" + " </html>\n" + "</notes>"; S.setNotes(notes); S.appendNotes(addnotes); string notes1 = S.getNotesString(); assertTrue( S.isSetNotes() == true ); assertTrue(( notes1 == taggednewnotes )); S.setNotes(notes); S.appendNotes(addnotes2); string notes2 = S.getNotesString(); assertTrue( S.isSetNotes() == true ); assertTrue(( notes2 == taggednewnotes )); } public void test_SBase_appendNotesString2() { string notes = "<html xmlns=\"http://www.w3.org/1999/xhtml\">\n" + " <head>\n" + " <title/>\n" + " </head>\n" + " <body>\n" + " <p>This is a test note </p>\n" + " </body>\n" + "</html>"; string taggednewnotes = "<notes>\n" + " <html xmlns=\"http://www.w3.org/1999/xhtml\">\n" + " <head>\n" + " <title/>\n" + " </head>\n" + " <body>\n" + " <p>This is a test note </p>\n" + " <p>This is more test notes </p>\n" + " </body>\n" + " </html>\n" + "</notes>"; string addnotes = "<body xmlns=\"http://www.w3.org/1999/xhtml\">\n" + " <p>This is more test notes </p>\n" + "</body>\n";; string addnotes2 = "<notes>\n" + " <body xmlns=\"http://www.w3.org/1999/xhtml\">\n" + " <p>This is more test notes </p>\n" + " </body>\n" + "</notes>"; S.setNotes(notes); S.appendNotes(addnotes); string notes1 = S.getNotesString(); assertTrue( S.isSetNotes() == true ); assertTrue(( notes1 == taggednewnotes )); S.setNotes(notes); S.appendNotes(addnotes2); string notes2 = S.getNotesString(); assertTrue( S.isSetNotes() == true ); assertTrue(( notes2 == taggednewnotes )); } public void test_SBase_appendNotesString3() { string notes = "<html xmlns=\"http://www.w3.org/1999/xhtml\">\n" + " <head>\n" + " <title/>\n" + " </head>\n" + " <body>\n" + " <p>This is a test note </p>\n" + " </body>\n" + "</html>"; string taggednewnotes = "<notes>\n" + " <html xmlns=\"http://www.w3.org/1999/xhtml\">\n" + " <head>\n" + " <title/>\n" + " </head>\n" + " <body>\n" + " <p>This is a test note </p>\n" + " <p xmlns=\"http://www.w3.org/1999/xhtml\">This is more test notes </p>\n" + " </body>\n" + " </html>\n" + "</notes>"; string taggednewnotes2 = "<notes>\n" + " <html xmlns=\"http://www.w3.org/1999/xhtml\">\n" + " <head>\n" + " <title/>\n" + " </head>\n" + " <body>\n" + " <p>This is a test note </p>\n" + " <p xmlns=\"http://www.w3.org/1999/xhtml\">This is more test notes 1</p>\n" + " <p xmlns=\"http://www.w3.org/1999/xhtml\">This is more test notes 2</p>\n" + " </body>\n" + " </html>\n" + "</notes>"; string addnotes = "<p xmlns=\"http://www.w3.org/1999/xhtml\">This is more test notes </p>\n";; string addnotes2 = "<p xmlns=\"http://www.w3.org/1999/xhtml\">This is more test notes 1</p>\n" + "<p xmlns=\"http://www.w3.org/1999/xhtml\">This is more test notes 2</p>";; string addnotes3 = "<notes>\n" + " <p xmlns=\"http://www.w3.org/1999/xhtml\">This is more test notes </p>\n" + "</notes>";; string addnotes4 = "<notes>\n" + " <p xmlns=\"http://www.w3.org/1999/xhtml\">This is more test notes 1</p>\n" + " <p xmlns=\"http://www.w3.org/1999/xhtml\">This is more test notes 2</p>\n" + "</notes>"; S.setNotes(notes); S.appendNotes(addnotes); string notes1 = S.getNotesString(); assertTrue( S.isSetNotes() == true ); assertTrue(( notes1 == taggednewnotes )); S.setNotes(notes); S.appendNotes(addnotes2); string notes2 = S.getNotesString(); assertTrue( S.isSetNotes() == true ); assertTrue(( notes2 == taggednewnotes2 )); S.setNotes(notes); S.appendNotes(addnotes3); string notes3 = S.getNotesString(); assertTrue( S.isSetNotes() == true ); assertTrue(( notes3 == taggednewnotes )); S.setNotes(notes); S.appendNotes(addnotes4); string notes4 = S.getNotesString(); assertTrue( S.isSetNotes() == true ); assertTrue(( notes4 == taggednewnotes2 )); } public void test_SBase_appendNotesString4() { string notes = "<body xmlns=\"http://www.w3.org/1999/xhtml\">\n" + " <p>This is a test note </p>\n" + "</body>";; string taggednewnotes = "<notes>\n" + " <html xmlns=\"http://www.w3.org/1999/xhtml\">\n" + " <head>\n" + " <title/>\n" + " </head>\n" + " <body>\n" + " <p>This is a test note </p>\n" + " <p>This is more test notes </p>\n" + " </body>\n" + " </html>\n" + "</notes>"; string addnotes = "<html xmlns=\"http://www.w3.org/1999/xhtml\">\n" + " <head>\n" + " <title/>\n" + " </head>\n" + " <body>\n" + " <p>This is more test notes </p>\n" + " </body>\n" + "</html>"; string addnotes2 = "<notes>\n" + " <html xmlns=\"http://www.w3.org/1999/xhtml\">\n" + " <head>\n" + " <title/>\n" + " </head>\n" + " <body>\n" + " <p>This is more test notes </p>\n" + " </body>\n" + " </html>\n" + "</notes>"; S.setNotes(notes); S.appendNotes(addnotes); string notes1 = S.getNotesString(); assertTrue( S.isSetNotes() == true ); assertTrue(( notes1 == taggednewnotes )); S.setNotes(notes); S.appendNotes(addnotes2); string notes2 = S.getNotesString(); assertTrue( S.isSetNotes() == true ); assertTrue(( notes2 == taggednewnotes )); } public void test_SBase_appendNotesString5() { string notes = "<p xmlns=\"http://www.w3.org/1999/xhtml\">This is a test note </p>";; string taggednewnotes = "<notes>\n" + " <html xmlns=\"http://www.w3.org/1999/xhtml\">\n" + " <head>\n" + " <title/>\n" + " </head>\n" + " <body>\n" + " <p xmlns=\"http://www.w3.org/1999/xhtml\">This is a test note </p>\n" + " <p>This is more test notes </p>\n" + " </body>\n" + " </html>\n" + "</notes>"; string addnotes = "<html xmlns=\"http://www.w3.org/1999/xhtml\">\n" + " <head>\n" + " <title/>\n" + " </head>\n" + " <body>\n" + " <p>This is more test notes </p>\n" + " </body>\n" + "</html>"; string addnotes2 = "<notes>\n" + " <html xmlns=\"http://www.w3.org/1999/xhtml\">\n" + " <head>\n" + " <title/>\n" + " </head>\n" + " <body>\n" + " <p>This is more test notes </p>\n" + " </body>\n" + " </html>\n" + "</notes>"; S.setNotes(notes); S.appendNotes(addnotes); string notes1 = S.getNotesString(); assertTrue( S.isSetNotes() == true ); assertTrue(( notes1 == taggednewnotes )); S.setNotes(notes); S.appendNotes(addnotes2); string notes2 = S.getNotesString(); assertTrue( S.isSetNotes() == true ); assertTrue(( notes2 == taggednewnotes )); } public void test_SBase_appendNotesString6() { string notes = "<body xmlns=\"http://www.w3.org/1999/xhtml\">\n" + " <p>This is a test note </p>\n" + "</body>";; string taggednewnotes = "<notes>\n" + " <body xmlns=\"http://www.w3.org/1999/xhtml\">\n" + " <p>This is a test note </p>\n" + " <p>This is more test notes </p>\n" + " </body>\n" + "</notes>"; string addnotes = "<body xmlns=\"http://www.w3.org/1999/xhtml\">\n" + " <p>This is more test notes </p>\n" + "</body>";; string addnotes2 = "<notes>\n" + " <body xmlns=\"http://www.w3.org/1999/xhtml\">\n" + " <p>This is more test notes </p>\n" + " </body>\n" + "</notes>"; S.setNotes(notes); S.appendNotes(addnotes); string notes1 = S.getNotesString(); assertTrue( S.isSetNotes() == true ); assertTrue(( notes1 == taggednewnotes )); S.setNotes(notes); S.appendNotes(addnotes2); string notes2 = S.getNotesString(); assertTrue( S.isSetNotes() == true ); assertTrue(( notes2 == taggednewnotes )); } public void test_SBase_appendNotesString7() { string notes = "<p xmlns=\"http://www.w3.org/1999/xhtml\">This is a test note </p>";; string taggednewnotes = "<notes>\n" + " <body xmlns=\"http://www.w3.org/1999/xhtml\">\n" + " <p xmlns=\"http://www.w3.org/1999/xhtml\">This is a test note </p>\n" + " <p>This is more test notes </p>\n" + " </body>\n" + "</notes>"; string addnotes = "<body xmlns=\"http://www.w3.org/1999/xhtml\">\n" + " <p>This is more test notes </p>\n" + "</body>";; string addnotes2 = "<notes>\n" + " <body xmlns=\"http://www.w3.org/1999/xhtml\">\n" + " <p>This is more test notes </p>\n" + " </body>\n" + "</notes>"; S.setNotes(notes); S.appendNotes(addnotes); string notes1 = S.getNotesString(); assertTrue( S.isSetNotes() == true ); assertTrue(( notes1 == taggednewnotes )); S.setNotes(notes); S.appendNotes(addnotes2); string notes2 = S.getNotesString(); assertTrue( S.isSetNotes() == true ); assertTrue(( notes2 == taggednewnotes )); } public void test_SBase_appendNotesString8() { string notes = "<body xmlns=\"http://www.w3.org/1999/xhtml\">\n" + " <p>This is a test note </p>\n" + "</body>";; string taggednewnotes = "<notes>\n" + " <body xmlns=\"http://www.w3.org/1999/xhtml\">\n" + " <p>This is a test note </p>\n" + " <p xmlns=\"http://www.w3.org/1999/xhtml\">This is more test notes </p>\n" + " </body>\n" + "</notes>"; string taggednewnotes2 = "<notes>\n" + " <body xmlns=\"http://www.w3.org/1999/xhtml\">\n" + " <p>This is a test note </p>\n" + " <p xmlns=\"http://www.w3.org/1999/xhtml\">This is more test notes 1</p>\n" + " <p xmlns=\"http://www.w3.org/1999/xhtml\">This is more test notes 2</p>\n" + " </body>\n" + "</notes>"; string addnotes = "<p xmlns=\"http://www.w3.org/1999/xhtml\">This is more test notes </p>";; string addnotes2 = "<p xmlns=\"http://www.w3.org/1999/xhtml\">This is more test notes 1</p>\n" + "<p xmlns=\"http://www.w3.org/1999/xhtml\">This is more test notes 2</p>";; string addnotes3 = "<notes>\n" + " <p xmlns=\"http://www.w3.org/1999/xhtml\">This is more test notes </p>\n" + "</notes>"; string addnotes4 = "<notes>\n" + " <p xmlns=\"http://www.w3.org/1999/xhtml\">This is more test notes 1</p>\n" + " <p xmlns=\"http://www.w3.org/1999/xhtml\">This is more test notes 2</p>\n" + "</notes>"; S.setNotes(notes); S.appendNotes(addnotes); string notes1 = S.getNotesString(); assertTrue( S.isSetNotes() == true ); assertTrue(( notes1 == taggednewnotes )); S.setNotes(notes); S.appendNotes(addnotes2); string notes2 = S.getNotesString(); assertTrue( S.isSetNotes() == true ); assertTrue(( notes2 == taggednewnotes2 )); S.setNotes(notes); S.appendNotes(addnotes3); string notes3 = S.getNotesString(); assertTrue( S.isSetNotes() == true ); assertTrue(( notes3 == taggednewnotes )); S.setNotes(notes); S.appendNotes(addnotes4); string notes4 = S.getNotesString(); assertTrue( S.isSetNotes() == true ); assertTrue(( notes4 == taggednewnotes2 )); } public void test_SBase_getQualifiersFromResources() { CVTerm cv = new CVTerm(libsbml.BIOLOGICAL_QUALIFIER); cv.setBiologicalQualifierType(libsbml.BQB_ENCODES); cv.addResource( "foo"); S.setMetaId( "sbase1"); S.addCVTerm(cv); assertTrue( S.getResourceBiologicalQualifier( "foo") == libsbml.BQB_ENCODES ); CVTerm cv1 = new CVTerm(libsbml.MODEL_QUALIFIER); cv1.setModelQualifierType(libsbml.BQM_IS); cv1.addResource( "bar"); S.addCVTerm(cv1); assertTrue( S.getResourceModelQualifier( "bar") == libsbml.BQM_IS ); cv = null; cv1 = null; } public void test_SBase_setAnnotation() { XMLToken token; XMLNode node; XMLTriple triple; XMLNode node2; Species sp; string taggedannt = "<annotation>This is a test note</annotation>";; token = new XMLToken("This is a test note"); node = new XMLNode(token); S.setAnnotation(node); assertTrue( S.isSetAnnotation() == true ); XMLNode t1 = S.getAnnotation(); assertTrue( t1.getNumChildren() == 1 ); assertTrue(( "This is a test note" == t1.getChild(0).getCharacters() )); if (S.getAnnotation() == node); { } S.setAnnotation(S.getAnnotation()); assertTrue(( "This is a test note" == S.getAnnotation().getChild(0).getCharacters() )); S.setAnnotation((XMLNode)null); assertTrue( S.isSetAnnotation() == false ); if (S.getAnnotation() != null); { } S.setAnnotation(node); assertTrue( S.isSetAnnotation() == true ); S.unsetAnnotation(); assertTrue( S.isSetAnnotation() == false ); triple = new XMLTriple("annotation", "", ""); node2 = new XMLNode(triple); node2.addChild(node); sp = ((Model)S).createSpecies(); sp.setAnnotation(node2); assertTrue( sp.isSetAnnotation() == true ); assertTrue(( taggedannt == sp.getAnnotationString() )); sp.unsetAnnotation(); assertTrue( sp.isSetAnnotation() == false ); S.setAnnotation(node2); assertTrue( S.isSetAnnotation() == true ); assertTrue(( taggedannt == S.getAnnotationString() )); S.unsetAnnotation(); assertTrue( S.isSetAnnotation() == false ); token = new XMLToken("(CR) ¨ ¨ ¨ (NOT CR) &#; &#x; �a8; ¨ ¨"); node = new XMLNode(token); S.setAnnotation(node); t1 = S.getAnnotation(); assertTrue( t1.getNumChildren() == 1 ); string s = t1.getChild(0).toXMLString(); string expected = "(CR) ¨ ¨ ¨ (NOT CR) &#; &#x; &#00a8; &#0168 &#x00a8";; assertTrue(( expected == s )); token = new XMLToken("& ' > < \" & ' > < ""); node = new XMLNode(token); S.setAnnotation(node); t1 = S.getAnnotation(); assertTrue( t1.getNumChildren() == 1 ); string s2 = t1.getChild(0).toXMLString(); string expected2 = "& ' > < " & ' > < "";; assertTrue(( expected2 == s2 )); token = null; node = null; node2 = null; triple = null; } public void test_SBase_setAnnotationString() { string annotation = "This is a test note";; string taggedannotation = "<annotation>This is a test note</annotation>";; S.setAnnotation(annotation); assertTrue( S.isSetAnnotation() == true ); if (( taggedannotation != S.getAnnotationString() )); { } XMLNode t1 = S.getAnnotation(); assertTrue( t1.getNumChildren() == 1 ); assertTrue(( "This is a test note" == t1.getChild(0).getCharacters() )); S.setAnnotation(S.getAnnotationString()); t1 = S.getAnnotation(); assertTrue( t1.getNumChildren() == 1 ); string chars = S.getAnnotationString(); assertTrue(( taggedannotation == chars )); S.setAnnotation( ""); assertTrue( S.isSetAnnotation() == false ); if (S.getAnnotationString() != null); { } S.setAnnotation(taggedannotation); assertTrue( S.isSetAnnotation() == true ); if (( taggedannotation != S.getAnnotationString() )); { } t1 = S.getAnnotation(); assertTrue( t1.getNumChildren() == 1 ); XMLNode t2 = t1.getChild(0); assertTrue(( "This is a test note" == t2.getCharacters() )); } public void test_SBase_setMetaId() { string metaid = "x12345";; S.setMetaId(metaid); assertTrue(( metaid == S.getMetaId() )); assertEquals( true, S.isSetMetaId() ); if (S.getMetaId() == metaid); { } S.setMetaId(S.getMetaId()); assertTrue(( metaid == S.getMetaId() )); S.setMetaId(""); assertEquals( false, S.isSetMetaId() ); if (S.getMetaId() != null); { } } public void test_SBase_setNotes() { XMLToken token; XMLNode node; token = new XMLToken("This is a test note"); node = new XMLNode(token); S.setNotes(node); assertTrue( S.isSetNotes() == true ); if (S.getNotes() == node); { } XMLNode t1 = S.getNotes(); assertTrue( t1.getNumChildren() == 1 ); assertTrue(( "This is a test note" == t1.getChild(0).getCharacters() )); S.setNotes(S.getNotes()); t1 = S.getNotes(); assertTrue( t1.getNumChildren() == 1 ); string chars = t1.getChild(0).getCharacters(); assertTrue(( "This is a test note" == chars )); S.setNotes((XMLNode)null); assertTrue( S.isSetNotes() == false ); if (S.getNotes() != null); { } S.setNotes(node); assertTrue( S.isSetNotes() == true ); token = null; node = null; token = new XMLToken("(CR) ¨ ¨ ¨ (NOT CR) &#; &#x; �a8; ¨ ¨"); node = new XMLNode(token); S.setNotes(node); t1 = S.getNotes(); assertTrue( t1.getNumChildren() == 1 ); string s = t1.getChild(0).toXMLString(); string expected = "(CR) ¨ ¨ ¨ (NOT CR) &#; &#x; &#00a8; &#0168 &#x00a8";; assertTrue(( expected == s )); token = new XMLToken("& ' > < \" & ' > < ""); node = new XMLNode(token); S.setNotes(node); t1 = S.getNotes(); assertTrue( t1.getNumChildren() == 1 ); string s2 = t1.getChild(0).toXMLString(); string expected2 = "& ' > < " & ' > < "";; assertTrue(( expected2 == s2 )); token = null; node = null; } public void test_SBase_setNotesString() { string notes = "This is a test note";; string taggednotes = "<notes>This is a test note</notes>";; S.setNotes(notes); assertTrue( S.isSetNotes() == true ); if (( taggednotes != S.getNotesString() )); { } XMLNode t1 = S.getNotes(); assertTrue( t1.getNumChildren() == 1 ); assertTrue(( "This is a test note" == t1.getChild(0).getCharacters() )); S.setNotes(S.getNotesString()); t1 = S.getNotes(); assertTrue( t1.getNumChildren() == 1 ); string chars = S.getNotesString(); assertTrue(( taggednotes == chars )); S.setNotes( ""); assertTrue( S.isSetNotes() == false ); if (S.getNotesString() != null); { } S.setNotes(taggednotes); assertTrue( S.isSetNotes() == true ); if (( taggednotes != S.getNotesString() )); { } t1 = S.getNotes(); assertTrue( t1.getNumChildren() == 1 ); XMLNode t2 = t1.getChild(0); assertTrue(( "This is a test note" == t2.getCharacters() )); } public void test_SBase_unsetAnnotationWithCVTerms() { CVTerm cv; string annt = "<annotation>\n" + " <test:test xmlns:test=\"http://test.org/test\">this is a test node</test:test>\n" + "</annotation>"; string annt_with_cvterm = "<annotation>\n" + " <test:test xmlns:test=\"http://test.org/test\">this is a test node</test:test>\n" + " <rdf:RDF xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" " + "xmlns:dc=\"http://purl.org/dc/elements/1.1/\" " + "xmlns:dcterms=\"http://purl.org/dc/terms/\" " + "xmlns:vCard=\"http://www.w3.org/2001/vcard-rdf/3.0#\" " + "xmlns:bqbiol=\"http://biomodels.net/biology-qualifiers/\" " + "xmlns:bqmodel=\"http://biomodels.net/model-qualifiers/\">\n" + " <rdf:Description rdf:about=\"#_000001\">\n" + " <bqbiol:is>\n" + " <rdf:Bag>\n" + " <rdf:li rdf:resource=\"http://www.geneontology.org/#GO:0005895\"/>\n" + " </rdf:Bag>\n" + " </bqbiol:is>\n" + " </rdf:Description>\n" + " </rdf:RDF>\n" + "</annotation>"; S.setAnnotation(annt); assertTrue( S.isSetAnnotation() == true ); assertTrue(( annt == S.getAnnotationString() )); S.unsetAnnotation(); assertTrue( S.isSetAnnotation() == false ); assertTrue( S.getAnnotation() == null ); S.setAnnotation(annt); S.setMetaId( "_000001"); cv = new CVTerm(libsbml.BIOLOGICAL_QUALIFIER); cv.setBiologicalQualifierType(libsbml.BQB_IS); cv.addResource( "http://www.geneontology.org/#GO:0005895"); S.addCVTerm(cv); assertTrue( S.isSetAnnotation() == true ); assertTrue(( annt_with_cvterm == S.getAnnotationString() )); S.unsetAnnotation(); assertTrue( S.isSetAnnotation() == false ); assertTrue( S.getAnnotation() == null ); cv = null; } public void test_SBase_unsetAnnotationWithModelHistory() { ModelHistory h = new ModelHistory(); ModelCreator c = new ModelCreator(); string annt = "<annotation>\n" + " <test:test xmlns:test=\"http://test.org/test\">this is a test node</test:test>\n" + "</annotation>"; string annt_with_modelhistory = "<annotation>\n" + " <test:test xmlns:test=\"http://test.org/test\">this is a test node</test:test>\n" + " <rdf:RDF xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" " + "xmlns:dc=\"http://purl.org/dc/elements/1.1/\" " + "xmlns:dcterms=\"http://purl.org/dc/terms/\" " + "xmlns:vCard=\"http://www.w3.org/2001/vcard-rdf/3.0#\" " + "xmlns:bqbiol=\"http://biomodels.net/biology-qualifiers/\" " + "xmlns:bqmodel=\"http://biomodels.net/model-qualifiers/\">\n" + " <rdf:Description rdf:about=\"#_000001\">\n" + " <dc:creator>\n" + " <rdf:Bag>\n" + " <rdf:li rdf:parseType=\"Resource\">\n" + " <vCard:N rdf:parseType=\"Resource\">\n" + " <vCard:Family>Keating</vCard:Family>\n" + " <vCard:Given>Sarah</vCard:Given>\n" + " </vCard:N>\n" + " <vCard:EMAIL>sbml-team@caltech.edu</vCard:EMAIL>\n" + " </rdf:li>\n" + " </rdf:Bag>\n" + " </dc:creator>\n" + " </rdf:Description>\n" + " </rdf:RDF>\n" + "</annotation>"; S.setAnnotation(annt); assertTrue( S.isSetAnnotation() == true ); assertTrue(( annt == S.getAnnotationString() )); S.unsetAnnotation(); assertTrue( S.isSetAnnotation() == false ); assertTrue( S.getAnnotation() == null ); S.setAnnotation(annt); S.setMetaId( "_000001"); c.setFamilyName("Keating"); c.setGivenName("Sarah"); c.setEmail("sbml-team@caltech.edu"); h.addCreator(c); ((Model)S).setModelHistory(h); assertTrue( S.isSetAnnotation() == true ); assertTrue(( annt_with_modelhistory == S.getAnnotationString() )); S.unsetAnnotation(); assertTrue( S.isSetAnnotation() == false ); assertTrue( S.getAnnotation() == null ); c = null; h = null; } public void test_SBase_unsetCVTerms() { CVTerm cv = new CVTerm(libsbml.BIOLOGICAL_QUALIFIER); cv.setBiologicalQualifierType(libsbml.BQB_ENCODES); cv.addResource( "foo"); S.setMetaId( "sbase1"); S.addCVTerm(cv); CVTerm cv1 = new CVTerm(libsbml.BIOLOGICAL_QUALIFIER); cv1.setBiologicalQualifierType(libsbml.BQB_IS); cv1.addResource( "bar"); S.addCVTerm(cv1); CVTerm cv2 = new CVTerm(libsbml.BIOLOGICAL_QUALIFIER); cv2.setBiologicalQualifierType(libsbml.BQB_IS); cv2.addResource( "bar1"); S.addCVTerm(cv2); CVTerm cv4 = new CVTerm(libsbml.BIOLOGICAL_QUALIFIER); cv4.setBiologicalQualifierType(libsbml.BQB_IS); cv4.addResource( "bar1"); S.addCVTerm(cv4); assertTrue( S.getNumCVTerms() == 2 ); S.unsetCVTerms(); assertTrue( S.getNumCVTerms() == 0 ); assertTrue( S.getCVTerms() == null ); cv = null; cv2 = null; cv1 = null; cv4 = null; } } }