Example #1
0
 public function testSetAriaAttrib()
 {
     $tag = new Tag(['tag' => 'div']);
     $tag->aria('hidden', 'true');
     $this->assertEquals('true', $tag->getAttrib('aria-hidden'));
 }