diff --git a/test/ChroniclerTests/ChronicleCollectionTest.cs b/test/ChroniclerTests/ChronicleCollectionTest.cs index 1c5e9f9..3cb09b4 100644 --- a/test/ChroniclerTests/ChronicleCollectionTest.cs +++ b/test/ChroniclerTests/ChronicleCollectionTest.cs @@ -17,6 +17,14 @@ public void TestParseJson() { var chronicleCollection = Chronicler.ChronicleCollection.ParseJson(CK2Json); Assert.False(string.IsNullOrEmpty(chronicleCollection.Chronicles[0].Chapters[0].Entries[0].Text)); + + Assert.Collection(chronicleCollection.Chronicles[0].Chapters, + chap => Assert.NotEmpty(chap.Entries), + chap => Assert.NotEmpty(chap.Entries), + chap => Assert.NotEmpty(chap.Entries), + chap => Assert.NotEmpty(chap.Entries), + chap => Assert.NotEmpty(chap.Entries), + chap => Assert.NotEmpty(chap.Entries)); } } }