\CI_Unit_test

Unit Testing Class

Simple testing class

Summary

Methods
Properties
Constants
__construct()
set_test_items()
run()
report()
use_strict()
active()
result()
set_template()
$active
$results
$strict
No constants found
_backtrace()
_default_template()
_parse_template()
$_template
$_template_rows
$_test_items_visible
N/A
No private methods found
No private properties found
N/A

Properties

$active

$active : boolean

Active flag

Type

boolean

$results

$results : array

Test results

Type

array

$strict

$strict : boolean

Strict comparison flag

Whether to use === or == when comparing

Type

boolean

$_template

$_template : string

Template

Type

string

$_template_rows

$_template_rows : string

Template rows

Type

string

$_test_items_visible

$_test_items_visible : array

List of visible test items

Type

array

Methods

__construct()

__construct() : void

Constructor

set_test_items()

set_test_items(array  $items) : void

Run the tests

Runs the supplied tests

Parameters

array $items

run()

run(mixed  $test, mixed  $expected = TRUE, string  $test_name = 'undefined', string  $notes = '') : string

Run the tests

Runs the supplied tests

Parameters

mixed $test
mixed $expected
string $test_name
string $notes

Returns

string

report()

report(array  $result = array()) : string

Generate a report

Displays a table with the test data

Parameters

array $result

Returns

string

use_strict()

use_strict(boolean  $state = TRUE) : void

Use strict comparison

Causes the evaluation to use === rather than ==

Parameters

boolean $state

active()

active(  $state = TRUE) : void

Make Unit testing active

Enables/disables unit testing

Parameters

$state

result()

result(array  $results = array()) : array

Result Array

Returns the raw result data

Parameters

array $results

Returns

array

set_template()

set_template(  $template) : void

Set the template

This lets us set the template to be used to display results

Parameters

$template

_backtrace()

_backtrace() : array

Generate a backtrace

This lets us show file names and line numbers

Returns

array

_default_template()

_default_template() : string

Get Default Template

Returns

string

_parse_template()

_parse_template() : void

Parse Template

Harvests the data within the template {pseudo-variables}