CloudinaryDotNet.Test.ApiTest.TestEnumToString C# (CSharp) Méthode

TestEnumToString() private méthode

private TestEnumToString ( ) : void
Résultat void
        public void TestEnumToString()
        {
            // should escape http urls

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