Properties

Properties existing in the Solar_Test_Suite class.

Public

None.

Protected

$_Solar_Test_Suite

(array) Default configuration values.

$_config

(array) Collection point for configuration values.

Inherited from Solar_Base.

Note that you do not define config defaults in $_config directly.

<?php
// DO NOT DO THIS
protected $_config = array(
    'foo' => 'bar',
    'baz' => 'dib',
);

Instead, define config defaults in a protected property named for the class, withan underscore prefix.

For exmple, a "Vendor_Class_Name" class would define the default config array in "$_Vendor_Class_Name". This convention lets child classes inherit parent config keys and values.

<?php
// DO THIS INSTEAD
protected $_Vendor_Class_Name = array(
    'foo' => 'bar',
    'baz' => 'dib',
);

$_dir

(string) The directory where tests are located.

$_info

(array) The log of pass/skip/todo/fail messages.

$_log

(Solar_Log) A Solar_Log instance.

$_test_result

(string) The result of the last test ('fail', 'todo', 'skip', or 'pass').

$_tests

(array) The test classes (and their methods) to run.

In the form of array($class => array($method1, $method2, ...)).

$_var

(Solar_Debug_Var) A Solar_Debug_Var instance.

$_verbose

(bool) When in 'verbose' mode, all diagnostic output will be displayed.

Private

None.



Local