Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F1432691
MWTestDox.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1013 B
Referenced Files
None
Subscribers
None
MWTestDox.php
View Options
<?php
use
PHPUnit\Framework\Test
;
use
PHPUnit\Framework\TestFailure
;
use
PHPUnit\Util\TestDox\CliTestDoxPrinter
;
/**
* Custom version of PHPUnit TestDox.
*/
class
MWTestDox
extends
CliTestDoxPrinter
{
/**
* @param TestFailure $defect
* @return void
*/
protected
function
printDefectTrace
(
TestFailure
$defect
):
void
{
parent
::
printDefectTrace
(
$defect
);
$test
=
$defect
->
getTestName
();
$log
=
MediaWikiLoggerPHPUnitExtension
::
$testsCollection
[
$test
]
??
null
;
if
(
$log
)
{
$this
->
write
(
"=== Logs generated by test case
\n
{$log}
\n
===
\n
"
);
}
}
/**
* Print the plain test name, not the prettified version from TestDox.
*
* @param Test $test
* @return string
*/
protected
function
formatTestName
(
Test
$test
):
string
{
return
$test
->
getName
();
}
/**
* Print the plain class name, not the prettified version from TestDox.
*
* @param Test $test
* @return string
*/
protected
function
formatClassName
(
Test
$test
):
string
{
return
get_class
(
$test
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sat, May 16, 22:11 (1 d, 3 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
f8/95/f4c3878d7824a2fc18175e3b3d44
Default Alt Text
MWTestDox.php (1013 B)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment