Lggr
Public Member Functions | List of all members
SebastianBergmann\CodeCoverage\Node\AbstractNode Class Reference
Inheritance diagram for SebastianBergmann\CodeCoverage\Node\AbstractNode:
Inheritance graph
[legend]
Collaboration diagram for SebastianBergmann\CodeCoverage\Node\AbstractNode:
Collaboration graph
[legend]

Public Member Functions

 __construct ($name, self $parent=null)
 
 getName ()
 
 getId ()
 
 getPath ()
 
 getPathAsArray ()
 
 getParent ()
 
 getTestedClassesPercent ($asString=true)
 
 getTestedTraitsPercent ($asString=true)
 
 getTestedClassesAndTraitsPercent ($asString=true)
 
 getTestedFunctionsPercent ($asString=true)
 
 getTestedMethodsPercent ($asString=true)
 
 getTestedFunctionsAndMethodsPercent ($asString=true)
 
 getLineExecutedPercent ($asString=true)
 
 getNumClassesAndTraits ()
 
 getNumTestedClassesAndTraits ()
 
 getClassesAndTraits ()
 
 getNumFunctionsAndMethods ()
 
 getNumTestedFunctionsAndMethods ()
 
 getFunctionsAndMethods ()
 
 getClasses ()
 
 getTraits ()
 
 getFunctions ()
 
 getLinesOfCode ()
 
 getNumExecutableLines ()
 
 getNumExecutedLines ()
 
 getNumClasses ()
 
 getNumTestedClasses ()
 
 getNumTraits ()
 
 getNumTestedTraits ()
 
 getNumMethods ()
 
 getNumTestedMethods ()
 
 getNumFunctions ()
 
 getNumTestedFunctions ()
 

Detailed Description

Base class for nodes in the code coverage information tree.

Constructor & Destructor Documentation

◆ __construct()

SebastianBergmann\CodeCoverage\Node\AbstractNode::__construct (   $name,
self  $parent = null 
)

Constructor.

Parameters
string$name
AbstractNode$parent

Member Function Documentation

◆ getClasses()

SebastianBergmann\CodeCoverage\Node\AbstractNode::getClasses ( )
abstract

Returns the classes of this node.

Returns
array

Reimplemented in SebastianBergmann\CodeCoverage\Node\Directory, and SebastianBergmann\CodeCoverage\Node\File.

◆ getClassesAndTraits()

SebastianBergmann\CodeCoverage\Node\AbstractNode::getClassesAndTraits ( )

Returns the classes and traits of this node.

Returns
array

◆ getFunctions()

SebastianBergmann\CodeCoverage\Node\AbstractNode::getFunctions ( )
abstract

Returns the functions of this node.

Returns
array

Reimplemented in SebastianBergmann\CodeCoverage\Node\Directory, and SebastianBergmann\CodeCoverage\Node\File.

◆ getFunctionsAndMethods()

SebastianBergmann\CodeCoverage\Node\AbstractNode::getFunctionsAndMethods ( )

Returns the functions and methods of this node.

Returns
array

◆ getId()

SebastianBergmann\CodeCoverage\Node\AbstractNode::getId ( )
Returns
string

◆ getLineExecutedPercent()

SebastianBergmann\CodeCoverage\Node\AbstractNode::getLineExecutedPercent (   $asString = true)

Returns the percentage of executed lines.

Parameters
bool$asString
Returns
int

◆ getLinesOfCode()

SebastianBergmann\CodeCoverage\Node\AbstractNode::getLinesOfCode ( )
abstract

Returns the LOC/CLOC/NCLOC of this node.

Returns
array

Reimplemented in SebastianBergmann\CodeCoverage\Node\Directory, and SebastianBergmann\CodeCoverage\Node\File.

◆ getName()

SebastianBergmann\CodeCoverage\Node\AbstractNode::getName ( )
Returns
string

◆ getNumClasses()

SebastianBergmann\CodeCoverage\Node\AbstractNode::getNumClasses ( )
abstract

Returns the number of classes.

Returns
int

Reimplemented in SebastianBergmann\CodeCoverage\Node\Directory, and SebastianBergmann\CodeCoverage\Node\File.

◆ getNumClassesAndTraits()

SebastianBergmann\CodeCoverage\Node\AbstractNode::getNumClassesAndTraits ( )

Returns the number of classes and traits.

Returns
int

◆ getNumExecutableLines()

SebastianBergmann\CodeCoverage\Node\AbstractNode::getNumExecutableLines ( )
abstract

Returns the number of executable lines.

Returns
int

Reimplemented in SebastianBergmann\CodeCoverage\Node\Directory, and SebastianBergmann\CodeCoverage\Node\File.

◆ getNumExecutedLines()

SebastianBergmann\CodeCoverage\Node\AbstractNode::getNumExecutedLines ( )
abstract

Returns the number of executed lines.

Returns
int

Reimplemented in SebastianBergmann\CodeCoverage\Node\Directory, and SebastianBergmann\CodeCoverage\Node\File.

◆ getNumFunctions()

SebastianBergmann\CodeCoverage\Node\AbstractNode::getNumFunctions ( )
abstract

Returns the number of functions.

Returns
int

Reimplemented in SebastianBergmann\CodeCoverage\Node\Directory, and SebastianBergmann\CodeCoverage\Node\File.

◆ getNumFunctionsAndMethods()

SebastianBergmann\CodeCoverage\Node\AbstractNode::getNumFunctionsAndMethods ( )

Returns the number of functions and methods.

Returns
int

◆ getNumMethods()

SebastianBergmann\CodeCoverage\Node\AbstractNode::getNumMethods ( )
abstract

Returns the number of methods.

Returns
int

Reimplemented in SebastianBergmann\CodeCoverage\Node\Directory, and SebastianBergmann\CodeCoverage\Node\File.

◆ getNumTestedClasses()

SebastianBergmann\CodeCoverage\Node\AbstractNode::getNumTestedClasses ( )
abstract

Returns the number of tested classes.

Returns
int

Reimplemented in SebastianBergmann\CodeCoverage\Node\Directory, and SebastianBergmann\CodeCoverage\Node\File.

◆ getNumTestedClassesAndTraits()

SebastianBergmann\CodeCoverage\Node\AbstractNode::getNumTestedClassesAndTraits ( )

Returns the number of tested classes and traits.

Returns
int

◆ getNumTestedFunctions()

SebastianBergmann\CodeCoverage\Node\AbstractNode::getNumTestedFunctions ( )
abstract

Returns the number of tested functions.

Returns
int

Reimplemented in SebastianBergmann\CodeCoverage\Node\Directory, and SebastianBergmann\CodeCoverage\Node\File.

◆ getNumTestedFunctionsAndMethods()

SebastianBergmann\CodeCoverage\Node\AbstractNode::getNumTestedFunctionsAndMethods ( )

Returns the number of tested functions and methods.

Returns
int

◆ getNumTestedMethods()

SebastianBergmann\CodeCoverage\Node\AbstractNode::getNumTestedMethods ( )
abstract

Returns the number of tested methods.

Returns
int

Reimplemented in SebastianBergmann\CodeCoverage\Node\Directory, and SebastianBergmann\CodeCoverage\Node\File.

◆ getNumTestedTraits()

SebastianBergmann\CodeCoverage\Node\AbstractNode::getNumTestedTraits ( )
abstract

Returns the number of tested traits.

Returns
int

Reimplemented in SebastianBergmann\CodeCoverage\Node\Directory, and SebastianBergmann\CodeCoverage\Node\File.

◆ getNumTraits()

SebastianBergmann\CodeCoverage\Node\AbstractNode::getNumTraits ( )
abstract

Returns the number of traits.

Returns
int

Reimplemented in SebastianBergmann\CodeCoverage\Node\Directory, and SebastianBergmann\CodeCoverage\Node\File.

◆ getParent()

SebastianBergmann\CodeCoverage\Node\AbstractNode::getParent ( )
Returns
AbstractNode

◆ getPath()

SebastianBergmann\CodeCoverage\Node\AbstractNode::getPath ( )
Returns
string

◆ getPathAsArray()

SebastianBergmann\CodeCoverage\Node\AbstractNode::getPathAsArray ( )
Returns
array

◆ getTestedClassesAndTraitsPercent()

SebastianBergmann\CodeCoverage\Node\AbstractNode::getTestedClassesAndTraitsPercent (   $asString = true)

Returns the percentage of classes and traits that has been tested.

Parameters
bool$asString
Returns
int

◆ getTestedClassesPercent()

SebastianBergmann\CodeCoverage\Node\AbstractNode::getTestedClassesPercent (   $asString = true)

Returns the percentage of classes that has been tested.

Parameters
bool$asString
Returns
int

◆ getTestedFunctionsAndMethodsPercent()

SebastianBergmann\CodeCoverage\Node\AbstractNode::getTestedFunctionsAndMethodsPercent (   $asString = true)

Returns the percentage of functions and methods that has been tested.

Parameters
bool$asString
Returns
int

◆ getTestedFunctionsPercent()

SebastianBergmann\CodeCoverage\Node\AbstractNode::getTestedFunctionsPercent (   $asString = true)

Returns the percentage of functions that has been tested.

Parameters
bool$asString
Returns
int

◆ getTestedMethodsPercent()

SebastianBergmann\CodeCoverage\Node\AbstractNode::getTestedMethodsPercent (   $asString = true)

Returns the percentage of methods that has been tested.

Parameters
bool$asString
Returns
int

◆ getTestedTraitsPercent()

SebastianBergmann\CodeCoverage\Node\AbstractNode::getTestedTraitsPercent (   $asString = true)

Returns the percentage of traits that has been tested.

Parameters
bool$asString
Returns
int

◆ getTraits()

SebastianBergmann\CodeCoverage\Node\AbstractNode::getTraits ( )
abstract

Returns the traits of this node.

Returns
array

Reimplemented in SebastianBergmann\CodeCoverage\Node\Directory, and SebastianBergmann\CodeCoverage\Node\File.


The documentation for this class was generated from the following file: