示例#1
0
	public function testIsImage(){
		$file1 = new \Core\Filestore\Backends\FileRemote($this->_testfile);
		$file2 = new \Core\Filestore\Backends\FileRemote($this->_testimage);

		$this->assertFalse($file1->isImage());
		$this->assertTrue($file2->isImage());
	}