CloudinaryDotNet.Test.ApiTest.TestEnumToString C# (CSharp) Method

TestEnumToString() private method

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

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