本文整理匯總了C#中libsbmlcs.Species.unsetModelHistory方法的典型用法代碼示例。如果您正苦於以下問題:C# Species.unsetModelHistory方法的具體用法?C# Species.unsetModelHistory怎麽用?C# Species.unsetModelHistory使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類libsbmlcs.Species
的用法示例。
在下文中一共展示了Species.unsetModelHistory方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: test_SBase_setModelHistoryL3
public void test_SBase_setModelHistoryL3()
{
SBase sb = new Species(3,1);
sb.setMetaId("_s");
ModelHistory mh = new ModelHistory();
ModelCreator mc = new ModelCreator();
Date date = new Date(2005,12,30,12,15,45,1,2,0);
mc.setFamilyName( "Keating");
mc.setGivenName( "Sarah");
mc.setEmail( "[email protected]");
mc.setOrganisation( "UH");
mh.addCreator(mc);
mh.setCreatedDate(date);
mh.setModifiedDate(date);
int i = sb.setModelHistory(mh);
assertTrue( i == libsbml.LIBSBML_OPERATION_SUCCESS );
assertTrue( sb.isSetModelHistory() == true );
mh = sb.getModelHistory();
assertTrue( mh != null );
sb.unsetModelHistory();
mh = sb.getModelHistory();
assertTrue( sb.isSetModelHistory() == false );
assertTrue( mh == null );
mh = null;
}