/// /// @file TestTrigger.cs /// @brief SBML Trigger unit tests /// @author Frank Bergmann (Csharp conversion) /// @author Akiya Jouraku (Csharp conversion) /// @author Sarah Keating /// /// $Id: TestTrigger.cs 8704 2009-01-04 02:26:05Z mhucka $ /// $HeadURL: https://sbml.svn.sourceforge.net/svnroot/sbml/trunk/libsbml/src/bindings/csharp/test/sbml/TestTrigger.cs $ /// /// This test file was converted from src/sbml/test/TestTrigger.c /// with the help of conversion sciprt (ctest_converter.pl). /// /// */ namespace LibSBMLCSTest { using libsbml; using System.IO; public class TestTrigger { 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 Trigger D; public void setUp() { D = new Trigger(); if (D == null); { } } public void tearDown() { D = null; } public void test_Trigger_create() { assertTrue( D.getTypeCode() == libsbml.SBML_TRIGGER ); assertTrue( D.getMetaId() == "" ); assertTrue( D.getNotes() == null ); assertTrue( D.getAnnotation() == null ); assertTrue( D.getMath() == null ); } public void test_Trigger_createWithLevelVersionAndNamespace() { XMLNamespaces xmlns = new XMLNamespaces(); xmlns.add( "http://www.sbml.org", "sbml"); Trigger object1 = new Trigger(2,1,xmlns); assertTrue( object1.getTypeCode() == libsbml.SBML_TRIGGER ); assertTrue( object1.getMetaId() == "" ); assertTrue( object1.getNotes() == null ); assertTrue( object1.getAnnotation() == null ); assertTrue( object1.getLevel() == 2 ); assertTrue( object1.getVersion() == 1 ); assertTrue( object1.getNamespaces() != null ); assertTrue( object1.getNamespaces().getLength() == 1 ); object1 = null; } public void test_Trigger_createWithMath() { ASTNode math = libsbml.parseFormula("x^3"); Trigger fd = new Trigger(math); ASTNode math1; string formula; assertTrue( fd.getTypeCode() == libsbml.SBML_TRIGGER ); assertTrue( fd.getMetaId() == "" ); assertTrue( fd.getNotes() == null ); assertTrue( fd.getAnnotation() == null ); math1 = fd.getMath(); assertTrue( math1 != null ); formula = libsbml.formulaToString(math1); assertTrue( formula != null ); assertTrue(( "x^3" == formula )); assertTrue( fd.getMath() != math ); assertEquals( true, fd.isSetMath() ); fd = null; } public void test_Trigger_free_NULL() { } public void test_Trigger_setMath() { ASTNode math = libsbml.parseFormula("lambda(x, x^3)"); ASTNode math1; string formula; D.setMath(math); math1 = D.getMath(); assertTrue( math1 != null ); formula = libsbml.formulaToString(math1); assertTrue( formula != null ); assertTrue(( "lambda(x, x^3)" == formula )); assertTrue( D.getMath() != math ); assertEquals( true, D.isSetMath() ); D.setMath(D.getMath()); math1 = D.getMath(); assertTrue( math1 != null ); formula = libsbml.formulaToString(math1); assertTrue( formula != null ); assertTrue(( "lambda(x, x^3)" == formula )); D.setMath(null); assertEquals( false, D.isSetMath() ); if (D.getMath() != null); { } } } }