Kraken\_Unit\Stream\StreamWriterTest::testApiIsWritable_ReturnsFalse_ForNotWritableStream PHP Method

testApiIsWritable_ReturnsFalse_ForNotWritableStream() public method

    public function testApiIsWritable_ReturnsFalse_ForNotWritableStream()
    {
        $stream = $this->createStreamMock();
        $stream->close();
        $this->assertFalse($stream->isWritable());
    }