public void SetListTest()
 {
     var target = new Document();
     const string name = "foo";
     var list = new List<object>();
     target.SetList(name, list);
     Assert.AreEqual(list, target.GetList(name));
 }
 public void GetListTest()
 {
     var target = new Document();
     const string name = "foo";
     var actual = target.GetList(name);
     Assert.IsNotNull(actual);
     Assert.AreEqual(0, actual.Count);
 }