function testProcessMultiple()
 {
     $_SERVER['REQUEST_METHOD'] = 'POST';
     $input = array('cow' => array('contact', 'create', array('contact_type' => 'Individual', 'first_name' => 'Cow')), 'sheep' => array('contact', 'create', array('contact_type' => 'Individual', 'first_name' => 'Sheep')));
     $_REQUEST['json'] = json_encode($input);
     $output = CRM_Utils_REST::processMultiple();
     $this->assertGreaterThan(0, $output['cow']['id']);
     $this->assertGreaterThan($output['cow']['id'], $output['sheep']['id']);
 }