SenseNet.ContentRepository.Tests.TrashTest.CheckContentList1 C# (CSharp) Метод

CheckContentList1() приватный статический Метод

private static CheckContentList1 ( string encodedPath ) : void
encodedPath string
Результат void
        private static void CheckContentList1(string encodedPath)
        {
            var contentlist = Node.Load<ContentList>(DecodePath(encodedPath));
            Assert.IsTrue(contentlist.ContentListId == 0, "ContentListId is not 0");
            Assert.IsNotNull(contentlist.ContentListType, "ContentListType is null");
            Assert.IsTrue(contentlist.ContentListDefinition == _listDef1);
        }
        
TrashTest