29 lines
536 B
PHP
29 lines
536 B
PHP
|
<?php
|
||
|
|
||
|
/*
|
||
|
* This file is part of Selenium Tor Driver.
|
||
|
* (c) R. Eric Wheeler <eric@rewiv.com>
|
||
|
* 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');
|
||
|
}
|
||
|
}
|