You are here

public function MultipartStreamTest::testCanProvideBoundary in Zircon Profile 8.0

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

File

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

Class

MultipartStreamTest

Namespace

GuzzleHttp\Tests

Code

public function testCanProvideBoundary() {
  $b = new MultipartStream([], 'foo');
  $this
    ->assertEquals('foo', $b
    ->getBoundary());
}