本文整理汇总了C#中Template.AddJournal方法的典型用法代码示例。如果您正苦于以下问题:C# Template.AddJournal方法的具体用法?C# Template.AddJournal怎么用?C# Template.AddJournal使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Template
的用法示例。
在下文中一共展示了Template.AddJournal方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: can_add_a_journal_to_a_template
public void can_add_a_journal_to_a_template()
{
var template = new Template();
var journal1 = new Journal(_today, "Rent");
var journal2 = new Journal(_today, "Credit Card Bill");
template.AddJournal(journal1);
template.AddJournal(journal2);
Assert.AreEqual(2, template.Journals.Count);
Assert.IsTrue(template.Journals.Contains(journal1));
Assert.IsTrue(template.Journals.Contains(journal2));
}
示例2: can_remove_a_journal_from_a_Template
public void can_remove_a_journal_from_a_Template()
{
var template = new Template();
var journal = new Journal(_today, "Rent");
template.AddJournal(journal);
template.RemoveJournal(journal);
Assert.AreEqual(0, template.Journals.Count);
Assert.IsFalse(template.Journals.Contains(journal));
}
示例3: can_emit_xml_describing_Template
public void can_emit_xml_describing_Template()
{
var date = new DateTime(2011, 5, 24);
var journal = new Journal(3, date, "Rent");
var template = new Template();
template.AddJournal(journal);
const string expected = @"<template>
<journal id=""3"" date=""2011-05-24T00:00:00"" description=""Rent"" isVerified=""false"">
<transactions />
</journal>
</template>";
var actual = template.EmitXml().ToString();
Assert.AreEqual(expected, actual);
}