Skip to content

Commit

Permalink
Dev: Adapt test base classes to namespaced version of phpunit
Browse files Browse the repository at this point in the history
  • Loading branch information
olleharstedt committed Oct 30, 2017
1 parent d72f3b9 commit f4decda
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/TestBaseClass.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

use PHPUnit\Framework\TestCase;

class TestBaseClass extends \PHPUnit_Framework_TestCase
class TestBaseClass extends TestCase
{
/**
* @var TestHelper
Expand Down
4 changes: 3 additions & 1 deletion tests/TestHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

namespace ls\tests;

class TestHelper extends \PHPUnit_Framework_TestCase
use PHPUnit\Framework\TestCase;

class TestHelper extends TestCase
{

/**
Expand Down

0 comments on commit f4decda

Please sign in to comment.