Skip to content

Commit d43a765

Browse files
committed
Uses PHPUnit 4+
1 parent 2034c0f commit d43a765

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

tests/Custom/BaseUrlTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,13 @@
55
use Behat\Mink\Driver\BrowserKitDriver;
66
use Behat\Mink\Session;
77
use Behat\Mink\Tests\Driver\Util\FixturesKernel;
8+
use PHPUnit\Framework\TestCase;
89
use Symfony\Component\HttpKernel\Client;
910

1011
/**
1112
* @group functional
1213
*/
13-
class BaseUrlTest extends \PHPUnit_Framework_TestCase
14+
class BaseUrlTest extends TestCase
1415
{
1516
public function testBaseUrl()
1617
{

tests/Custom/ErrorHandlingTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@
33
namespace Behat\Mink\Tests\Driver\Custom;
44

55
use Behat\Mink\Driver\BrowserKitDriver;
6+
use PHPUnit\Framework\TestCase;
67
use Symfony\Component\BrowserKit\Client;
78
use Symfony\Component\BrowserKit\Response;
89

9-
class ErrorHandlingTest extends \PHPUnit_Framework_TestCase
10+
class ErrorHandlingTest extends TestCase
1011
{
1112
/**
1213
* @var TestClient

0 commit comments

Comments
 (0)