public function BinaryFileResponseTest::provideFullFileRanges in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/http-foundation/Tests/BinaryFileResponseTest.php \Symfony\Component\HttpFoundation\Tests\BinaryFileResponseTest::provideFullFileRanges()
File
- vendor/
symfony/ http-foundation/ Tests/ BinaryFileResponseTest.php, line 117
Class
Namespace
Symfony\Component\HttpFoundation\TestsCode
public function provideFullFileRanges() {
return array(
array(
'bytes=0-',
),
array(
'bytes=0-34',
),
array(
'bytes=-35',
),
// Syntactical invalid range-request should also return the full resource
array(
'bytes=20-10',
),
array(
'bytes=50-40',
),
);
}