CmisCmdlets.Test.Commands.ReadCmisDocumentTests.ReadingByPathToFile C# (CSharp) Метод

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

private ReadingByPathToFile ( ) : void
Результат void
        public void ReadingByPathToFile()
        {
            CmisHelper.CreateTempDocument("/__readByPath", "Hello World!", "text/plain");
            FileSystemHelper.RegisterTempFile("fromPathToFile.html");

            var res = Shell.Execute(ReadCmisDocumentCmd + " /__readByPath fromPathToFile.html");
            Assert.That(res, Is.Empty);
            Assert.That("Hello World!", FileSystemHelper.IsContentOf("fromPathToFile.html"));
        }