public function vfsStreamWrapperSetOptionTestCase::removeBlockingDoesNotWork in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/mikey179/vfsStream/src/test/php/org/bovigo/vfs/vfsStreamWrapperSetOptionTestCase.php \org\bovigo\vfs\vfsStreamWrapperSetOptionTestCase::removeBlockingDoesNotWork()
@test
File
- vendor/
mikey179/ vfsStream/ src/ test/ php/ org/ bovigo/ vfs/ vfsStreamWrapperSetOptionTestCase.php, line 49
Class
- vfsStreamWrapperSetOptionTestCase
- Test for stream_set_option() implementation.
Namespace
org\bovigo\vfsCode
public function removeBlockingDoesNotWork() {
$fp = fopen(vfsStream::url('root/foo.txt'), 'rb');
$this
->assertFalse(stream_set_blocking($fp, 0));
fclose($fp);
}