CloudinaryDotNet.Test.CloudinaryTest.TestExplode C# (CSharp) 메소드

TestExplode() 개인적인 메소드

private TestExplode ( ) : void
리턴 void
        public void TestExplode()
        {
            var uploadParams = new ImageUploadParams()
            {
                File = new FileDescription(m_testPdfPath),
                PublicId = "testexplode"
            };

            m_cloudinary.Upload(uploadParams);

            var result = m_cloudinary.Explode(new ExplodeParams(
                "testexplode",
                new Transformation().Page("all")));

            Assert.AreEqual("processing", result.Status);
        }
CloudinaryTest