Skip to content

Commit

Permalink
Merge pull request #43 from Codeception/phpunit9
Browse files Browse the repository at this point in the history
Compatibility with PHPUnit 9
  • Loading branch information
Naktibalda authored Feb 15, 2020
2 parents dfe9173 + b79ccb3 commit 46690fb
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 8 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"require": {
"php": ">= 7.0",
"phpunit/phpunit": "> 6.0",
"codeception/phpunit-wrapper": ">6.0.16 <6.1.0 | ^6.7.0 | ^7.7.1 | ^8.0.4"
"codeception/phpunit-wrapper": ">6.0.16 <6.1.0 | ^6.7.0 | ^7.7.1 | ^8.0.4 | ^9.0.0"
},
"autoload": {
"files": ["src/Codeception/function.php"],
Expand Down
7 changes: 0 additions & 7 deletions tests/VerifyTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -97,13 +97,6 @@ public function testIsInstanceOf()
expect($testClass)->isNotInstanceOf('DateTimeZone');
}

public function testInternalType()
{
$testVar = array();
expect($testVar)->internalType('array');
expect($testVar)->notInternalType('boolean');
}

public function testHasAttribute()
{
expect('Exception')->hasAttribute('message');
Expand Down

0 comments on commit 46690fb

Please sign in to comment.