transform() 공개 메소드

public transform ( $response )
예제 #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));
 }