public void Configure_ConfigureCalled_SitecoreInfoConfigurationReturned()
        {
            //Assign
            var attr         = new SitecoreParentAttribute();
            var propertyInfo = typeof(StubClass).GetProperty("DummyProperty");


            //Act
            var result = attr.Configure(propertyInfo) as SitecoreParentConfiguration;

            //Assert
            Assert.IsNotNull(result);
        }