Exemplo n.º 1
0
 public function testInitializeMimeType()
 {
     $file = new File("test.txt");
     $this->assertEquals("text/plain", $file->getMimeType());
     $file = new File("test.txt", null, "image/png");
     $this->assertEquals("image/png", $file->getMimeType());
 }