Method | Description | |
---|---|---|
__construct ( array $prefixes ) | Stashes the list of target prefixes. | |
traceMethod ( array $stack = false ) : string | Extracts the last method name that was not within Simpletest itself. |
Method | Description | |
---|---|---|
captureTrace ( ) : array | Returns current stack trace. | |
frameLiesWithinSimpleTestFolder ( array $frame ) : boolean | Test to see if error is generated by SimpleTest itself. | |
frameMatchesPrefix ( array $frame ) : boolean | Tries to determine if the method call is an assert, etc. |
public __construct ( array $prefixes ) | ||
$prefixes | array | List of method prefixes to search for. |
protected captureTrace ( ) : array | ||
return | array | Full trace. |
protected frameLiesWithinSimpleTestFolder ( array $frame ) : boolean | ||
$frame | array | PHP stack frame. |
return | boolean | True if a SimpleTest file. |
protected frameMatchesPrefix ( array $frame ) : boolean | ||
$frame | array | PHP stack frame. |
return | boolean | True if matches a target. |
public traceMethod ( array $stack = false ) : string | ||
$stack | array | List of stack frames. |
return | string | Snippet of test report with line number and file. |