E2E\TestCase::__construct PHP Method

__construct() public method

TestCase constructor.
public __construct ( )
    public function __construct()
    {
        parent::__construct();
        $this->createApp();
        $this->resetData();
        $this->driver = RemoteWebDriver::create('http://localhost:4444/wd/hub', DesiredCapabilities::chrome());
        $this->driver->manage()->window()->setSize(new WebDriverDimension(1440, 900));
        $this->driver->manage()->window()->setPosition(new WebDriverPoint(0, 0));
    }