Unit_test.php File Reference

Go to the source code of this file.


Classes

class  CI_Unit_test

Functions

 is_true ($test)
 Helper functions to test boolean true/false.
 is_false ($test)

Function Documentation

is_false ( test  ) 

Definition at line 340 of file Unit_test.php.

00341 {
00342         return (is_bool($test) AND $test === FALSE) ? TRUE : FALSE;
00343 }

is_true ( test  ) 

Helper functions to test boolean true/false.

private

Returns:
bool

Definition at line 336 of file Unit_test.php.

00337 {
00338         return (is_bool($test) AND $test === TRUE) ? TRUE : FALSE;
00339 }