Catel.Test.Data.ModelBaseTest.GetValue_NonExistingProperty C# (CSharp) Метод

GetValue_NonExistingProperty() приватный Метод

private GetValue_NonExistingProperty ( ) : void
Результат void
        public void GetValue_NonExistingProperty()
        {
            var entry = new IniEntry();

            ExceptionTester.CallMethodAndExpectException<PropertyNotRegisteredException>(() => entry.GetValue<string>("Non-existing property"));
        }
ModelBaseTest