Source

						public function testControllerLookupFail() {
		Dispatcher::config(array('classes' => array('router' => __CLASS__)));

		$this->expectException("/Controller `SomeNonExistentController` not found/");
		Dispatcher::run(new Request(array('url' => '/')));
	}