setRoutes() public method

public setRoutes ( array $routes )
$routes array
 public function testEmptyRouteMatchWillNotTriggerDefault()
 {
     $this->object->setRoutes(array('bar' => array()));
     $assets = $this->object->getRoute('bar');
     $this->assertNotEquals('default', $assets);
     $this->assertCount(0, $assets);
 }