예제 #1
0
 public function testValidXml()
 {
     $this->setStubResponse('<xml></xml>');
     $this->module->seeResponseIsXml();
     $this->setStubResponse('<xml><name>John</name></xml>');
     $this->module->seeResponseIsXml();
     $this->module->seeResponseEquals('<xml><name>John</name></xml>');
 }
예제 #2
0
 public function testValidXml()
 {
     $this->module->response = '<xml></xml>';
     $this->module->seeResponseIsXml();
     $this->module->response = '<xml><name>John</name></xml>';
     $this->module->seeResponseIsXml();
     $this->module->seeResponseEquals($this->module->response);
 }