public function testAfterControllerOrder()
 {
     $m1 = $this->getMiddleware();
     $m2 = $this->getMiddleware();
     $this->dispatcher->afterController($this->controller, $this->method, $this->response);
     $this->assertEquals(2, $m1->afterControllerOrder);
     $this->assertEquals(1, $m2->afterControllerOrder);
 }