public void GetHashCode_should_return_value_for_class_with_generic_property2()
        {
            var first = new ClassWithGenericProperty();

            first.Prop = new GenericDependency <int> {
                Prop = 1
            };

            var result = first.GetHashCode();

            Assert.NotEqual(0, result);
        }