Skip to content

Commit c98a7b9

Browse files
committed
Update TestCase class references.
1 parent 0506acf commit c98a7b9

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

tests/Decomposition/LUPTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
use MCordingley\LinearAlgebra\Decomposition\LUP;
88
use MCordingley\LinearAlgebra\Matrix;
99
use MCordingley\LinearAlgebra\MatrixException;
10-
use PHPUnit_Framework_TestCase;
10+
use PHPUnit\Framework\TestCase;
1111

12-
final class LUPTest extends PHPUnit_Framework_TestCase
12+
final class LUPTest extends TestCase
1313
{
1414
public function testNonSquare()
1515
{

tests/Decomposition/LUTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
use MCordingley\LinearAlgebra\Decomposition\LU;
88
use MCordingley\LinearAlgebra\Matrix;
99
use MCordingley\LinearAlgebra\MatrixException;
10-
use PHPUnit_Framework_TestCase;
10+
use PHPUnit\Framework\TestCase;
1111

12-
final class LUTest extends PHPUnit_Framework_TestCase
12+
final class LUTest extends TestCase
1313
{
1414
public function testNonSquare()
1515
{

tests/MatrixTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
use MCordingley\LinearAlgebra\Matrix;
88
use MCordingley\LinearAlgebra\MatrixException;
99
use MCordingley\LinearAlgebra\Vector;
10-
use PHPUnit_Framework_TestCase;
10+
use PHPUnit\Framework\TestCase;
1111

12-
final class MatrixTest extends PHPUnit_Framework_TestCase
12+
final class MatrixTest extends TestCase
1313
{
1414
private function buildMatrix()
1515
{

tests/VectorTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@
77
use MCordingley\LinearAlgebra\Matrix;
88
use MCordingley\LinearAlgebra\MatrixException;
99
use MCordingley\LinearAlgebra\Vector;
10+
use PHPUnit\Framework\TestCase;
1011

11-
class VectorTest extends \PHPUnit_Framework_TestCase
12+
class VectorTest extends TestCase
1213
{
1314
private function buildVector()
1415
{

0 commit comments

Comments
 (0)