private void BatchRequestNullReferenceExceptionWhenOmitReponseOnSuccessIsTrue(string accessToken)
        {
            Test("(#5883) Batch Request NullReferenceException when omit_response_on_success = true",
                       () =>
                       {
                           var fb = new FuntownClient(accessToken);

                           return fb.Batch(
                               new FuntownBatchParameter("/me") { Data = new { omit_respone_on_success = true, name = "get-uid" } },
                               new FuntownBatchParameter("/", new { ids = "result=get-uid:$..id" }));
                       });
        }