From d2df9bc7cc9d4b3e53818470c5d0977c9a36677c Mon Sep 17 00:00:00 2001 From: Derek Allard Date: Sun, 15 Apr 2007 17:41:17 +0000 Subject: update pMachine to EllisLab update copyright year update Code Igniter to CodeIgniter --- user_guide/libraries/unit_testing.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'user_guide/libraries/unit_testing.html') diff --git a/user_guide/libraries/unit_testing.html b/user_guide/libraries/unit_testing.html index 4351c4c3a..02f8c0631 100644 --- a/user_guide/libraries/unit_testing.html +++ b/user_guide/libraries/unit_testing.html @@ -2,7 +2,7 @@ -Code Igniter User Guide +CodeIgniter User Guide @@ -22,7 +22,7 @@ window.onload = function() { - + @@ -33,7 +33,7 @@ window.onload = function() {
- +

Code Igniter User Guide Version 1.5.2

CodeIgniter User Guide Version 1.5.3

@@ -45,7 +45,7 @@ window.onload = function() { @@ -66,7 +66,7 @@ Unit Testing Class

Unit testing is an approach to software development in which tests are written for each function in your application. If you are not familiar with the concept you might do a little googling on the subject.

-

Code Igniter's Unit Test class is quite simple, consisting of an evaluation function and two result functions. +

CodeIgniter's Unit Test class is quite simple, consisting of an evaluation function and two result functions. It's not intended to be a full-blown test suite but rather a simple mechanism to evaluate your code to determine if it is producing the correct data type and result.

@@ -74,7 +74,7 @@ to determine if it is producing the correct data type and result.

Initializing the Class

-

Like most other classes in Code Igniter, the Unit Test class is initialized in your controller using the $this->load->library function:

+

Like most other classes in CodeIgniter, the Unit Test class is initialized in your controller using the $this->load->library function:

$this->load->library('unit_test');

Once loaded, the Unit Test object will be available using: $this->unit

@@ -203,7 +203,7 @@ Previous Topic:  Template Parser ClassUser Guide Home   ·   Next Topic:  URI Class

-

Code Igniter  ·  Copyright © 2006  ·  Ellislab, Inc.

+

CodeIgniter  ·  Copyright © 2007  ·  Ellislab, Inc.

-- cgit v1.2.3-24-g4f1b