Skip to content

Commit

Permalink
Issue #28: Up phpunit/phpunit to ^9.6.
Browse files Browse the repository at this point in the history
  • Loading branch information
donquixote committed Oct 31, 2024
1 parent 3ab5fab commit b7ef2dc
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
"psr-4": { "Donquixote\\Cellbrush\\": "src/" }
},
"require-dev": {
"phpunit/phpunit": "^5"
"phpunit/phpunit": "^9.6"
}
}
3 changes: 2 additions & 1 deletion tests/src/AttributesMapTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@
namespace Donquixote\Cellbrush\Tests;

use Donquixote\Cellbrush\Html\Multiple\StaticAttributesMap;
use PHPUnit\Framework\TestCase;

class AttributesMapTest extends \PHPUnit_Framework_TestCase {
class AttributesMapTest extends TestCase {

function testMerge() {
$a = StaticAttributesMap::create(
Expand Down
3 changes: 2 additions & 1 deletion tests/src/CellMatrixTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@

use Donquixote\Cellbrush\Cell\Cell;
use Donquixote\Cellbrush\Matrix\CellMatrix;
use PHPUnit\Framework\TestCase;

class CellMatrixTest extends \PHPUnit_Framework_TestCase {
class CellMatrixTest extends TestCase {

function testRowspanSimple() {
$cellMatrix = CellMatrix::create(2, 1);
Expand Down
3 changes: 2 additions & 1 deletion tests/src/CellbrushTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@
namespace Donquixote\Cellbrush\Tests;

use Donquixote\Cellbrush\Table\Table;
use PHPUnit\Framework\TestCase;

class CellbrushTest extends \PHPUnit_Framework_TestCase {
class CellbrushTest extends TestCase {

function testRegularTable() {

Expand Down
3 changes: 2 additions & 1 deletion tests/src/HierarchyTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@
namespace Donquixote\Cellbrush\Tests;

use Donquixote\Cellbrush\Axis\DynamicAxis;
use PHPUnit\Framework\TestCase;

class HierarchyTest extends \PHPUnit_Framework_TestCase {
class HierarchyTest extends TestCase {

function testFlat() {
$hierarchy = new DynamicAxis();
Expand Down
3 changes: 2 additions & 1 deletion tests/src/TableSectionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@
use Donquixote\Cellbrush\Axis\DynamicAxis;
use Donquixote\Cellbrush\Html\Multiple\StaticAttributesMap;
use Donquixote\Cellbrush\TSection\TableSection;
use PHPUnit\Framework\TestCase;

class TableSectionTest extends \PHPUnit_Framework_TestCase {
class TableSectionTest extends TestCase {

function testRegularTable() {
$columns = new DynamicAxis();
Expand Down

0 comments on commit b7ef2dc

Please sign in to comment.