object = new Test_Controller; } public function testRun() { $this->object->run('index'); $this->assertEquals($this->object->counter,3); } public function testException() { $except=false; try{ $this->object->run('bogus'); }catch(Exception $e){ $except=true; } $this->assertEquals($except,true); } }