public function testPriority() {
$this
->assertEquals(array(), $this->router
->all());
list($low, $high) = $this
->createRouterMocks();
$this->router
->add($low, 10);
$this->router
->add($high, 100);
$this
->assertEquals(array(
$high,
$low,
), $this->router
->all());
}