public void PropertyAccessors_GetPropertyValue_ContainingObjectIsNull()
        {
            PropertyAccessorsTestClass testObj = null;

            Assert.Throws <ArgumentNullException>(() => PropertyAccessors.GetPropertyValue(testObj, "stringProperty1"));
        }