Editor.TestServices.PageMoveWorkflowTests.A_CreateContent C# (CSharp) Method

A_CreateContent() public method

public A_CreateContent ( ) : void
return void
        public void A_CreateContent()
        {
            content = new ContentDTO();
            content.IsNew = true;
            content.Title = "Nuovo Content Move";
            content.Skinid = 1;

            content = csvc.SaveContent(content);

            Assert.IsTrue(content.IsPersisted, "Il content non risulta salvato: isPersisted is False!");
            Assert.IsTrue(content.Contentid > 0, "Il content non ha un identificativo proprio!");
        }