You are here

public function MultipartStreamTest::testIsNotWritable in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/guzzlehttp/psr7/tests/MultipartStreamTest.php \GuzzleHttp\Tests\MultipartStreamTest::testIsNotWritable()

File

vendor/guzzlehttp/psr7/tests/MultipartStreamTest.php, line 21

Class

MultipartStreamTest

Namespace

GuzzleHttp\Tests

Code

public function testIsNotWritable() {
  $b = new MultipartStream();
  $this
    ->assertFalse($b
    ->isWritable());
}