| 1 | <?php |
||
| 8 | class FormatsTest extends \PHPUnit_Framework_TestCase |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var Formats |
||
| 12 | */ |
||
| 13 | protected $object; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * Tears down the fixture, for example, closes a network connection. |
||
| 17 | * This method is called after a test is executed. |
||
| 18 | */ |
||
| 19 | protected function tearDown() |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @covers FlexiPeeHP\Formats::byContentType |
||
| 26 | */ |
||
| 27 | public function testByContentType() |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @covers FlexiPeeHP\Formats::bySuffix |
||
| 35 | */ |
||
| 36 | public function testBySuffix() |
||
| 41 | |||
| 42 | /** |
||
| 43 | * @covers FlexiPeeHP\Formats::suffixToContentType |
||
| 44 | */ |
||
| 45 | public function testSuffixToContentType() |
||
| 50 | |||
| 51 | /** |
||
| 52 | * @covers FlexiPeeHP\Formats::contentTypeToSuffix |
||
| 53 | */ |
||
| 54 | public function testContentTypeToSuffix() |
||
| 59 | } |
||
| 60 |