⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.1
Server IP:
185.238.29.86
Server:
Linux server2 6.8.12-6-pve #1 SMP PREEMPT_DYNAMIC PMX 6.8.12-6 (2024-12-19T19:05Z) x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
toner-aktuell.de
/
vendor
/
smalot
/
pdfparser
/
View File Name :
.atoum.php
<?php /* This file will automatically be included before EACH run. Use it to configure atoum or anything that needs to be done before EACH run. More information on documentation: [en] http://docs.atoum.org/en/chapter3.html#Configuration-files [fr] http://docs.atoum.org/fr/chapter3.html#Fichier-de-configuration */ use \mageekguy\atoum; $report = $script->addDefaultReport(); /* LOGO // This will add the atoum logo before each run. $report->addField(new atoum\report\fields\runner\atoum\logo()); // This will add a green or red logo after each run depending on its status. $report->addField(new atoum\report\fields\runner\result\logo()); */ /* CODE COVERAGE SETUP */ // Please replace in next line "Project Name" by your project name and "/path/to/destination/directory" by your destination directory path for html files. $coverageField = new atoum\report\fields\runner\coverage\html('PdfParser', 'coverage'); // Please replace in next line http://url/of/web/site by the root url of your code coverage web site. $coverageField->setRootUrl('http://test.local'); $report->addField($coverageField); /**/ /* TEST GENERATOR SETUP $testGenerator = new atoum\test\generator(); // Please replace in next line "/path/to/your/tests/units/classes/directory" by your unit test's directory. $testGenerator->setTestClassesDirectory('path/to/your/tests/units/classes/directory'); // Please replace in next line "your\project\namespace\tests\units" by your unit test's namespace. $testGenerator->setTestClassNamespace('your\project\namespace\tests\units'); // Please replace in next line "/path/to/your/classes/directory" by your classes directory. $testGenerator->setTestedClassesDirectory('path/to/your/classes/directory'); // Please replace in next line "your\project\namespace" by your project namespace. $testGenerator->setTestedClassNamespace('your\project\namespace'); // Please replace in next line "path/to/your/tests/units/runner.php" by path to your unit test's runner. $testGenerator->setRunnerPath('path/to/your/tests/units/runner.php'); $script->getRunner()->setTestGenerator($testGenerator); */