Пример #1
0
 public void GetDocumentListTest()
 {
     var target = new Document();
     const string name = "foo";
     var actual = target.GetDocumentList(name);
     Assert.IsNotNull(actual);
     Assert.AreEqual(0, actual.Count);
 }
Пример #2
0
 public void SetDocumentListTest()
 {
     var target = new Document();
     const string name = "foo";
     var list = new List<Document>();
     target.SetDocumentList(name, list);
     Assert.AreEqual(list, target.GetDocumentList(name));
 }