Skip to content

Commit 53906f4

Browse files
feat(identify): Namespace PHPUnit test case and refactor tests toconform with new namespacing technique
1 parent addd5e1 commit 53906f4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tests/IdentifyServiceProviderTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
namespace Unicodeveloper\Identify\Test;
44

55
use Mockery as m;
6-
use PHPUnit_Framework_TestCase;
6+
use PHPUnit\Framework\TestCase;
77
use Unicodeveloper\Identify\{ Identify, IdentifyServiceProvider };
88

9-
class IdentifyServiceProviderTest extends PHPUnit_Framework_TestCase
9+
class IdentifyServiceProviderTest extends TestCase
1010
{
1111

1212
/**

tests/IdentifyTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
namespace Unicodeveloper\Identify\Test;
44

5-
use PHPUnit_Framework_TestCase;
5+
use PHPUnit\Framework\TestCase;
66
use Sinergi\BrowserDetector\{ Browser, Device, Language, Os };
77
use Unicodeveloper\Identify\Identify;
88

9-
class IdentifyTest extends PHPUnit_Framework_TestCase
9+
class IdentifyTest extends TestCase
1010
{
1111

1212
/**

0 commit comments

Comments
 (0)