Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
8 | public function testFileDownload() |
||
9 | { |
||
10 | $path = tempnam(sys_get_temp_dir(), 'TEST'); |
||
11 | $this->assertStringEqualsFile($path, '', 'Test file must be empty before download!'); |
||
12 | |||
13 | $this->client->downloadFile(self::TEST_FILE_URL, $path); |
||
14 | $this->assertStringNotEqualsFile($path, '', 'Test file must not be empty after download!'); |
||
15 | } |
||
17 |