| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 31 | public function testConstructor() { |
||
| 32 | |||
| 33 | $this->assertEquals("DELETE", HTTPMethodInterface::METHOD_DELETE); |
||
| 34 | $this->assertEquals("GET", HTTPMethodInterface::METHOD_GET); |
||
| 35 | $this->assertEquals("HEAD", HTTPMethodInterface::METHOD_HEAD); |
||
| 36 | $this->assertEquals("OPTIONS", HTTPMethodInterface::METHOD_OPTIONS); |
||
| 37 | $this->assertEquals("PATCH", HTTPMethodInterface::METHOD_PATCH); |
||
| 38 | $this->assertEquals("POST", HTTPMethodInterface::METHOD_POST); |
||
| 39 | $this->assertEquals("PUT", HTTPMethodInterface::METHOD_PUT); |
||
| 40 | } |
||
| 41 | |||
| 43 |