transform() public method

public transform ( $response )
Esempio n. 1
0
 public function testXsltResponseTransformer()
 {
     $responseTransformer = new Xslt($this->getSampleXslForTransformation());
     $result = $responseTransformer->transform($this->getSampleXmlForTransformation());
     $this->assertEquals('Fight for your mind by Ben Harper - 1995', trim($result));
 }