protected function setUp()
 {
     if (is_null($this->collectionClass)) {
         $this->collectionClass = '\\aik099\\QATools\\PageObject\\Proxy\\AbstractProxy';
     }
     parent::setUp();
 }
 protected function setUp()
 {
     if (is_null($this->collectionClass)) {
         $this->collectionClass = '\\aik099\\QATools\\PageObject\\Element\\WebElementCollection';
         $this->collectionElementClass = '\\aik099\\QATools\\PageObject\\Element\\WebElement';
     }
     parent::setUp();
 }
 protected function setUp()
 {
     if (is_null($this->collectionClass)) {
         $this->collectionClass = '\\tests\\aik099\\QATools\\HtmlElements\\Fixture\\Element\\TypifiedElementCollectionChild';
         $this->collectionElementClass = '\\aik099\\QATools\\HtmlElements\\Element\\TextInput';
     }
     $this->webElement = m::mock(self::WEB_ELEMENT_CLASS);
     $this->webElement->shouldReceive('getSession')->withNoArgs()->andReturn($this->session);
     parent::setUp();
 }