Use PHPUnit\Framework\TestCase instead of PHPUnit_Framework_TestCase (#271)

Use the `PHPUnit\Framework\TestCase` notation instead of `PHPUnit_Framework_TestCase` while extending our TestCases. This will help us migrate to PHPUnit 6, that [no longer support snake case class names](https://github.com/sebastianbergmann/phpunit/blob/master/ChangeLog-6.0.md#changed-1).
This commit is contained in:
Gabriel Caruso
2017-11-08 13:48:01 -02:00
committed by Adrien Crivelli
parent 442e612202
commit aed27a0bed
51 changed files with 102 additions and 102 deletions
@@ -6,9 +6,9 @@ use PhpOffice\PhpSpreadsheet\Calculation\Calculation;
use PhpOffice\PhpSpreadsheet\Calculation\Functions;
use PhpOffice\PhpSpreadsheet\Calculation\TextData;
use PhpOffice\PhpSpreadsheet\Shared\StringHelper;
use PHPUnit_Framework_TestCase;
use PHPUnit\Framework\TestCase;
class TextDataTest extends PHPUnit_Framework_TestCase
class TextDataTest extends TestCase
{
public function setUp()
{