Catel.Test.EnumFacts.TheGetNameMethod.ReturnsNameForIntEnumValue C# (CSharp) Method

ReturnsNameForIntEnumValue() private method

private ReturnsNameForIntEnumValue ( ) : void
return void
            public void ReturnsNameForIntEnumValue()
            {
                var name = Enum<Enum1>.GetName(2);

                Assert.AreEqual("MySecondValue", name);
            }
        }
EnumFacts.TheGetNameMethod