Ejemplo n.º 1
0
 public function testUncheck()
 {
     $node = new NodeElement('checkbox_or_radio', $this->session);
     $this->driver->expects($this->once())->method('uncheck')->with('checkbox_or_radio');
     $node->uncheck();
 }