Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F3281262
ArcanistTestResultParser.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
1 KB
Referenced Files
None
Subscribers
None
ArcanistTestResultParser.php
View Options
<?php
/**
* Abstract base class for test result parsers.
*/
abstract
class
ArcanistTestResultParser
{
protected
$enableCoverage
;
protected
$projectRoot
;
protected
$coverageFile
;
protected
$stderr
;
public
function
setEnableCoverage
(
$enable_coverage
)
{
$this
->
enableCoverage
=
$enable_coverage
;
return
$this
;
}
public
function
setProjectRoot
(
$project_root
)
{
$this
->
projectRoot
=
$project_root
;
return
$this
;
}
public
function
setCoverageFile
(
$coverage_file
)
{
$this
->
coverageFile
=
$coverage_file
;
return
$this
;
}
public
function
setAffectedTests
(
$affected_tests
)
{
$this
->
affectedTests
=
$affected_tests
;
return
$this
;
}
public
function
setStderr
(
$stderr
)
{
$this
->
stderr
=
$stderr
;
return
$this
;
}
/**
* Parse test results from provided input and return an array of
* @{class:ArcanistUnitTestResult}.
*
* @param string Path to test.
* @param string String containing test results.
* @return array
*/
abstract
public
function
parseTestResults
(
$path
,
$test_results
)
;
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, Mar 23, 20:24 (1 w, 3 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1244163
Default Alt Text
ArcanistTestResultParser.php (1 KB)
Attached To
Mode
rARC Arcanist
Attached
Detach File
Event Timeline
Log In to Comment