* This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. */ use Sikofitt\WebDriver\FirefoxBinary; /** * Created by PhpStorm. * User: eric * Date: 12/20/16 * Time: 1:33 PM */ class FireFoxBinaryTest extends PHPUnit_Framework_TestCase { /** * @expectedException \Exception */ public function testBinaryFail() { $fireFoxBinary = new FirefoxBinary('file'); } }