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

TestListTags() 개인적인 메소드

private TestListTags ( ) : void
리턴 void
        public void TestListTags()
        {
            // should allow listing tags

            ImageUploadParams uploadParams = new ImageUploadParams()
            {
                File = new FileDescription(m_testImagePath),
                Tags = "api_test_custom"
            };

            m_cloudinary.Upload(uploadParams);

            ListTagsResult result = m_cloudinary.ListTags();

            Assert.IsTrue(result.Tags.Contains("api_test_custom"));
        }
CloudinaryTest