Candor.Reflection.ReflectionExtensionsTests.ReflectionExtensionEnumDescriptionMatchesPropertyNameWhenAttributeMissing C# (CSharp) Method

ReflectionExtensionEnumDescriptionMatchesPropertyNameWhenAttributeMissing() private method

        public void ReflectionExtensionEnumDescriptionMatchesPropertyNameWhenAttributeMissing()
        {
            MockAccount account = new MockAccount() { AccountNumber = 1234567, AccountType = AccountType.Type2 };

            Assert.AreEqual("Type2", account.AccountType.Description());
        }