Catel.Test.StringToObjectHelperFacts.TheGetValueAsEnumMethod.ReturnsRightValueForValidValue C# (CSharp) Method

ReturnsRightValueForValidValue() private method

private ReturnsRightValueForValidValue ( ) : void
return void
            public void ReturnsRightValueForValidValue()
            {
                var enumValue = StringToObjectHelper.ToEnum("Value2", TestEnum.Value3);

                Assert.AreEqual(TestEnum.Value2, enumValue);
            }
        }
StringToObjectHelperFacts.TheGetValueAsEnumMethod