Adding PHPUnit tests
[viewsvn.git] / docs / phpunit / ApplicationController.php
1 <?php
2
3 require_once('PHPUnit2/Framework/TestCase.php');
4
5 class ApplicationControllerTest extends PHPUnit2_Framework_TestCase
6 {
7 protected $fixture;
8
9 public function setUp()
10 {
11 $this->fixture = array();
12 }
13
14 public function testNewArrayIsEmpty()
15 {
16 throw new PHPUnit2_Framework_IncompleteTestError;
17 }
18 }
19
20 ?>