1 system_test.module | public SystemTestFileTransfer::getSettingsForm() |
File
- core/
modules/ simpletest/ tests/ system_test.module, line 479 - Test module for system functions.
Class
- SystemTestFileTransfer
- Mock FileTransfer object to test the settings form functionality.
Code
public function getSettingsForm() {
$form = array();
$form['system_test_username'] = array(
'#type' => 'textfield',
'#title' => t('System Test Username'),
);
return $form;
}