示例#1
0
文件: AtomTest.php 项目: seytar/psx
 public function testIsContentTypeSupported()
 {
     $writer = new Atom();
     $this->assertTrue($writer->isContentTypeSupported(new MediaType('application/atom+xml')));
     $this->assertFalse($writer->isContentTypeSupported(new MediaType('application/xml')));
 }