Example #1
0
 public function testGetContentType()
 {
     $this->assertEquals('css', $this->object->getContentType());
     $object = new File($this->source, $this->context, '', '', 'type');
     $this->assertEquals('type', $object->getContentType());
 }
Example #2
0
 function testGetContentType()
 {
     $file = new File(SABRE_TEMPDIR . '/file.txt');
     $this->assertNull($file->getContentType());
 }