Catel.Test.Data.ModelBaseTest.GetValue_NonExistingProperty C# (CSharp) Méthode

GetValue_NonExistingProperty() private méthode

private GetValue_NonExistingProperty ( ) : void
Résultat void
        public void GetValue_NonExistingProperty()
        {
            var entry = new IniEntry();

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