function testThrowExceptionIfNoDispatchedController()
 {
     $filter = new lmbActionPerformingFilter();
     $fc = new MockFilterChain();
     $fc->expectNever('next');
     try {
         $filter->run($fc);
         $this->assertTrue(false);
     } catch (lmbException $e) {
     }
 }