CakePHP
  • Documentation
    • Book
    • API
    • Videos
    • Reporting Security Issues
    • Privacy Policy
    • Logos & Trademarks
  • Business Solutions
  • Swag
  • Road Trip
  • Team
  • Community
    • Community
    • Get Involved
    • Issues (GitHub)
    • Bakery
    • Featured Resources
    • Training
    • Meetups
    • My CakePHP
    • CakeFest
    • Newsletter
    • Linkedin
    • YouTube
    • Facebook
    • Twitter
    • Mastodon
    • Help & Support
    • Forum
    • Stack Overflow
    • Slack
    • Paid Support
CakePHP

C CakePHP 2.9 API

  • Overview
  • Tree
  • Deprecated
  • Version:
    • 2.9
      • 4.2
      • 4.1
      • 4.0
      • 3.9
      • 3.8
      • 3.7
      • 3.6
      • 3.5
      • 3.4
      • 3.3
      • 3.2
      • 3.1
      • 3.0
      • 2.10
      • 2.9
      • 2.8
      • 2.7
      • 2.6
      • 2.5
      • 2.4
      • 2.3
      • 2.2
      • 2.1
      • 2.0
      • 1.3
      • 1.2

Packages

  • Cake
    • Cache
      • Engine
    • Configure
    • Console
      • Command
        • Task
    • Controller
      • Component
        • Acl
        • Auth
    • Core
    • Error
    • Event
    • I18n
    • Log
      • Engine
    • Model
      • Behavior
      • Datasource
        • Database
        • Session
      • Validator
    • Network
      • Email
      • Http
    • Routing
      • Filter
      • Route
    • TestSuite
      • Coverage
      • Fixture
      • Reporter
    • Utility
    • View
      • Helper
  • None

Classes

  • CakeBaseReporter
  • CakeHtmlReporter
  • CakeTextReporter

Class CakeBaseReporter

CakeBaseReporter contains common reporting features used in the CakePHP Test suite

PHPUnit_TextUI_ResultPrinter
Extended by CakeBaseReporter
Direct Subclasses
  • CakeHtmlReporter
  • CakeTextReporter
Package: Cake\TestSuite\Reporter
Copyright: Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
License: MIT License
Location: Cake/TestSuite/Reporter/CakeBaseReporter.php

Properties summary

  • $_characterSet protected
    string
    Character set for the output of test reporting.
  • $_headerSent protected
    boolean
    Headers sent
  • $params public
    array
    Array of request parameters. Usually parsed GET params.

Method Summary

  • __construct() public

    Does nothing yet. The first output will be sent on the first test start.

  • addError() public
    An error occurred.
  • addFailure() public
    A failure occurred.
  • addIncompleteTest() public
    Incomplete test.
  • addSkippedTest() public
    Skipped test.
  • baseUrl() public
    Get the baseUrl if one is available.
  • endTest() public
    A test ended.
  • endTestSuite() public
    A test suite ended.
  • paintDocumentEnd() public

    Paints the end of the response from the test suite. Used to paint things like in an html page.

  • paintDocumentStart() public

    Paints the start of the response from the test suite. Used to paint things like head elements in an html page.

  • paintResult() public
    Paint result
  • paintTestMenu() public

    Paint a list of test sets, core, app, and plugin test sets available.

  • printResult() public
    Print result
  • startTest() public
    A test started.
  • startTestSuite() public
    A test suite started.
  • testCaseList() public

    Retrieves a list of test cases from the active Manager class, displaying it in the correct format for the reporter subclass

Method Detail

__construct() public ¶

__construct( string $charset = 'utf-8' , array $params = array() )

Does nothing yet. The first output will be sent on the first test start.

Params

  • show_passes - Should passes be shown
  • plugin - Plugin test being run?
  • core - Core test being run.
  • case - The case being run
  • codeCoverage - Whether the case/group being run is being code covered.
Parameters
string $charset optional 'utf-8'
The character set to output with. Defaults to UTF-8
array $params optional array()
Array of request parameters the reporter should use. See above.

addError() public ¶

addError( PHPUnit_Framework_Test $test , Exception $e , float $time )

An error occurred.

Parameters
PHPUnit_Framework_Test $test
The test to add an error for.
Exception $e
The exception object to add.
float $time
The current time.

addFailure() public ¶

addFailure( PHPUnit_Framework_Test $test , PHPUnit_Framework_AssertionFailedError $e , float $time )

A failure occurred.

Parameters
PHPUnit_Framework_Test $test
The test that failed
PHPUnit_Framework_AssertionFailedError $e
The assertion that failed.
float $time
The current time.

addIncompleteTest() public ¶

addIncompleteTest( PHPUnit_Framework_Test $test , Exception $e , float $time )

Incomplete test.

Parameters
PHPUnit_Framework_Test $test
The test that was incomplete.
Exception $e
The incomplete exception
float $time
The current time.

addSkippedTest() public ¶

addSkippedTest( PHPUnit_Framework_Test $test , Exception $e , float $time )

Skipped test.

Parameters
PHPUnit_Framework_Test $test
The test that failed.
Exception $e
The skip object.
float $time
The current time.

baseUrl() public ¶

baseUrl( )

Get the baseUrl if one is available.

Returns
string
The base URL for the request.

endTest() public ¶

endTest( PHPUnit_Framework_Test $test , float $time )

A test ended.

Parameters
PHPUnit_Framework_Test $test
The test that ended
float $time
The current time.

endTestSuite() public ¶

endTestSuite( PHPUnit_Framework_TestSuite $suite )

A test suite ended.

Parameters
PHPUnit_Framework_TestSuite $suite
The suite that ended.

paintDocumentEnd() public ¶

paintDocumentEnd( )

Paints the end of the response from the test suite. Used to paint things like in an html page.

paintDocumentStart() public ¶

paintDocumentStart( )

Paints the start of the response from the test suite. Used to paint things like head elements in an html page.

paintResult() public ¶

paintResult( PHPUnit_Framework_TestResult $result )

Paint result

Parameters
PHPUnit_Framework_TestResult $result
The result object

paintTestMenu() public ¶

paintTestMenu( )

Paint a list of test sets, core, app, and plugin test sets available.

printResult() public ¶

printResult( PHPUnit_Framework_TestResult $result )

Print result

Parameters
PHPUnit_Framework_TestResult $result
The result object

startTest() public ¶

startTest( PHPUnit_Framework_Test $test )

A test started.

Parameters
PHPUnit_Framework_Test $test
The test that started.

startTestSuite() public ¶

startTestSuite( PHPUnit_Framework_TestSuite $suite )

A test suite started.

Parameters
PHPUnit_Framework_TestSuite $suite
The suite to start

testCaseList() public ¶

testCaseList( )

Retrieves a list of test cases from the active Manager class, displaying it in the correct format for the reporter subclass

Returns
mixed

Properties detail

$_characterSet ¶

protected string

Character set for the output of test reporting.

$_headerSent ¶

protected boolean

Headers sent

false

$params ¶

public array

Array of request parameters. Usually parsed GET params.

array()
OpenHub
Rackspace
Rackspace
  • Business Solutions
  • Showcase
  • Documentation
  • Book
  • API
  • Videos
  • Reporting Security Issues
  • Privacy Policy
  • Logos & Trademarks
  • Community
  • Get Involved
  • Issues (GitHub)
  • Bakery
  • Featured Resources
  • Training
  • Meetups
  • My CakePHP
  • CakeFest
  • Newsletter
  • Linkedin
  • YouTube
  • Facebook
  • Twitter
  • Mastodon
  • Help & Support
  • Forum
  • Stack Overflow
  • Slack
  • Paid Support

Generated using CakePHP API Docs