public void ExtendedType_CanDetectAutomaticProperties()
        {
            ExtendedType et       = typeof(ComplexOverloads <>);
            Property     property = et.GetProperty("Automatic");

            Assert.IsNotNull(property);
            Assert.IsTrue(property.IsAutomatic);
        }