Exemplo n.º 1
0
 public function testCloseDoesNothingAfterDetach()
 {
     $this->tmpnam = tempnam(sys_get_temp_dir(), 'diac');
     $resource = fopen($this->tmpnam, 'wb+');
     $stream = new Stream($resource);
     $detached = $stream->detach();
     $stream->close();
     $this->assertTrue(is_resource($detached));
     $this->assertSame($resource, $detached);
 }