Example #1
0
 public function testIsContentTypeSupported()
 {
     $writer = new Form();
     $this->assertTrue($writer->isContentTypeSupported(new MediaType('application/x-www-form-urlencoded')));
     $this->assertFalse($writer->isContentTypeSupported(new MediaType('application/xml')));
 }