public function testMatchMethod()
 {
     $method = "GET";
     $allowed = "GET PUT POST";
     $c = new Controller($method, 'GET');
     $value = $c->matchAction($method, $allowed);
     $this->assertEquals($value, 1, 'preg_match failed');
     $allowd = "DELETE";
     $value = $c->matchAction($method, $allowed);
     $this->assertEquals($value, 1, 'preg_match failed');
 }