public function testRouteProcessingWhenDoesntExist()
 {
     $app = new Index();
     $app->load();
     try {
         $app->controller = "blah";
         $app->action = "doh";
         $app->process();
         $this->assertTrue(false);
     } catch (Exception $e) {
         $this->assertTrue(true);
     }
 }