BloomTests.Book.BookDataTests.Set_CalledTwiceWithDIfferentLangs_HasBoth C# (CSharp) Method

Set_CalledTwiceWithDIfferentLangs_HasBoth() private method

private Set_CalledTwiceWithDIfferentLangs_HasBoth ( ) : void
return void
        public void Set_CalledTwiceWithDIfferentLangs_HasBoth()
        {
            var htmlDom = new HtmlDom();
            var data = new BookData(htmlDom, new CollectionSettings(), null);
            data.Set("1", "one", "en");
            data.Set("1", "uno", "es");
            Assert.AreEqual(2,data.GetMultiTextVariableOrEmpty("1").Forms.Count());
        }
BookDataTests