public void EditableObjectModelBase_GetFailedTest3() { var person = new EditablePerson(); try { person.BadGetWithDefault2(); Assert.Fail("Expected an exception"); } catch (ArgumentException ex) { Assert.AreEqual("propertyName", ex.ParamName); } }