CloudinaryDotNet.Test.ApiTest.TestEnumToString C# (CSharp) 메소드

TestEnumToString() 개인적인 메소드

private TestEnumToString ( ) : void
리턴 void
        public void TestEnumToString()
        {
            // should escape http urls

            TagCommand command = TagCommand.SetExclusive;
            string commandStr = Api.GetCloudinaryParam<TagCommand>(command);
            Assert.AreEqual(commandStr, "set_exclusive");
        }
ApiTest