示例#1
0
 public function testSimpleTagWithContent()
 {
     $result = Selecta::wrap('div', 'Hello');
     $this->assertEquals('<div>Hello</div>', $result);
 }
示例#2
0
 public function testProblem1()
 {
     $result = Selecta::wrap('a[href=/content/page/templates/][title=My pages].tab-active', 'hello');
     $this->assertEquals('<a href="/content/page/templates/" title="My pages" class="tab-active">hello</a>', $result);
 }