BloomTests.web.BloomServerTests.GetVernacularBookList_ThereAre2_Returns2ListItems C# (CSharp) Method

GetVernacularBookList_ThereAre2_Returns2ListItems() private method

private GetVernacularBookList_ThereAre2_Returns2ListItems ( ) : void
return void
        public void GetVernacularBookList_ThereAre2_Returns2ListItems()
        {
            var b = CreateBloomServer();
            var transaction = new PretendRequestInfo(ServerBase.ServerUrlWithBloomPrefixEndingInSlash + "libraryContents");
            AddBook("1","one");
            AddBook("2", "two");
            b.MakeReply(transaction);
            AssertThatXmlIn.String(transaction.ReplyContentsAsXml).HasSpecifiedNumberOfMatchesForXpath("//li", 2);
        }