You are here

public function MultipartStreamTest::testCreatesDefaultBoundary in Zircon Profile 8.0

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

File

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

Class

MultipartStreamTest

Namespace

GuzzleHttp\Tests

Code

public function testCreatesDefaultBoundary() {
  $b = new MultipartStream();
  $this
    ->assertNotEmpty($b
    ->getBoundary());
}