SenseNet.ContentRepository.Tests.CopyMoveTest.CheckContentListItem2 C# (CSharp) Метод

CheckContentListItem2() приватный Метод

private CheckContentListItem2 ( string encodedPath ) : void
encodedPath string
Результат void
		private void CheckContentListItem2(string encodedPath)
		{
			Node node = LoadNode(encodedPath);
            Assert.IsTrue(node.HasProperty("#Int_0"), "ContentListItem has not property: #Int_0");
            Assert.IsNotNull(node.ContentListType, "ContentListItem ContentListType == null");
            Assert.IsTrue(node.ContentListId > 0, "ContentListItem ContentListId == 0");
		}
CopyMoveTest