canSelect() public method

Can the item be selected
public canSelect ( ) : boolean
return boolean
Example #1
0
 public function testCanSelectIsFalse()
 {
     $item = new AsciiArtItem('////\\\\');
     $this->assertFalse($item->canSelect());
 }