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

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