public void NameOfProp_Of_Property_Is_Property_Name()
 {
     Assert.AreEqual("FooBar", ReflectionLibrary.NameOfProp(() => FooBar));
 }
 public void NameOfProp_Of_Null_Is_Null()
 {
     Assert.IsNull(ReflectionLibrary.NameOfProp <object>(() => null));
 }