Example #1
0
 /**
  * @covers ::getMultipartBoundary
  * @covers ::setMultipartBoundary
  */
 public function testMultipartBoundary()
 {
     $this->assertNotEmpty($this->form->getMultipartBoundary());
     $boundary = 'test';
     $this->form->setMultipartBoundary($boundary);
     $this->assertEquals($boundary, $this->form->getMultipartBoundary());
 }