GetNonCatelProperties() public method

Gets the non-Catel properties.
public GetNonCatelProperties ( ) : CachedPropertyInfo>.IDictionary
return CachedPropertyInfo>.IDictionary
        public void CorrectlyRegistersNonCatelProperties()
        {
            var catelTypeInfo = new CatelTypeInfo(typeof(CatelTypeInfoTestModel));

            var properties = catelTypeInfo.GetNonCatelProperties();
            Assert.AreNotEqual(0, properties.Count);
            Assert.IsTrue(properties.Keys.Contains("NormalProperty"));
        }