public function testGetSoapAvailableValues()
 {
     $field = new MockTracker_FormElement_Field_List();
     $field->setReturnValue('getId', 123);
     $value_function = 'project_members';
     $default_values = $decorators = '';
     $users = new Tracker_FormElement_Field_List_Bind_Users($field, $value_function, $default_values, $decorators);
     $this->assertEqual(count($users->getSoapAvailableValues()), 1);
     $soap_values = array(array('field_id' => 123, 'bind_value_id' => 0, 'bind_value_label' => 'project_members'));
     $this->assertEqual($users->getSoapAvailableValues(), $soap_values);
 }