Skip to content

Instantly share code, notes, and snippets.

@elnur
Last active August 29, 2015 14:01
Show Gist options
  • Select an option

  • Save elnur/ec63d00e78c83f649405 to your computer and use it in GitHub Desktop.

Select an option

Save elnur/ec63d00e78c83f649405 to your computer and use it in GitHub Desktop.
<phpunit>
<php>
<env name="BROWSER" value="firefox"/>
</php>
</phpunit>
<?php
class TestCase extends PHPUnit_Framework_TestCase
{
private $browser;
protected function setUp()
{
$this->browser = new Browser('firefox');
}
// ...
}
<?php
class TestCase extends PHPUnit_Framework_TestCase
{
private $browser;
protected function setUp()
{
$this->browser = new Browser(getenv('BROWSER'));
}
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment