public function itReturnsTheUserNameAsWell()
 {
     $value = new Tracker_FormElement_Field_List_Bind_UsersValue(12, 'neo', 'Thomas A. Anderson (neo)');
     $json = $value->fetchFormattedForJson();
     $this->assertEqual($json, array('id' => '12', 'label' => 'Thomas A. Anderson (neo)', 'is_hidden' => false, 'username' => 'neo', 'realname' => 'Le roi arthur'));
 }