public void GetValueThrowsExceptionWithNullContextTest()
{
var target = new GeneratorWrapper(PropertyExpression.FirstName, PropertyExpression.FirstName, (Type)null);
Action action = () => target.ReadValue(PropertyExpression.LastName, null);
action.ShouldThrow<ArgumentNullException>();
}