GetCatelProperties() public method

Gets the Catel properties.
public GetCatelProperties ( ) : PropertyData>.IDictionary
return PropertyData>.IDictionary
        public void CorrectlyRegistersCatelProperties()
        {
            var catelTypeInfo = new CatelTypeInfo(typeof (CatelTypeInfoTestModel));

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