本文整理汇总了C#中Blog.GetPosts方法的典型用法代码示例。如果您正苦于以下问题:C# Blog.GetPosts方法的具体用法?C# Blog.GetPosts怎么用?C# Blog.GetPosts使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Blog
的用法示例。
在下文中一共展示了Blog.GetPosts方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Can_parse_posts
public void Can_parse_posts()
{
var blog = new Blog(WordpressXml);
var posts = blog.GetPosts();
Assert.Equal(2, posts.Count());
Assert.True(
posts.Any(p =>
p.Title == "test title 1" &&
p.Author.Username == "testuser1" &&
p.Body == "test body 1" &&
p.PublishedAtUtc.Month == 4 &&
p.PublishedAtUtc.Day == 5 &&
p.PublishedAtUtc.Year == 2010 &&
p.Slug == "test-title-1" &&
p.Categories.Count() == 2 &&
p.Tags.Count() == 2));
Assert.True(
posts.Any(p =>
p.Title == "test title 2" &&
p.Author.Username == "testuser2" &&
p.Body == "test body 2" &&
p.PublishedAtUtc.Month == 4 &&
p.PublishedAtUtc.Day == 8 &&
p.PublishedAtUtc.Year == 2011 &&
p.Slug == "test-title-2" &&
p.Categories.Count() == 2 &&
p.Tags.Count() == 2));
}