コード例 #1
0
 /**
  * @testdox encode() tests
  * @dataProvider getEncodeTests
  */
 public function testEncode($original, $expected)
 {
     $stylesheetCompressor = new StylesheetCompressor();
     $this->assertSame($expected, $stylesheetCompressor->encode($original));
 }
コード例 #2
0
ファイル: JavaScript.php プロジェクト: CryptArc/TextFormatter
 /**
  * Return the JavaScript representation of the stylesheet
  *
  * @return string
  */
 protected function getStylesheet()
 {
     return $this->stylesheetCompressor->encode($this->xsl);
 }