Skip to content

Commit 6ed901b

Browse files
committed
Adapt test to new tools
1 parent 3391e7a commit 6ed901b

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
/composer.phar
22
/composer.lock
33
/vendor/*
4+
.phpunit.result.cache

composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
"php": "^7.1 || ^8.0"
1515
},
1616
"require-dev": {
17-
"doctrine/collections": "^1.0",
18-
"doctrine/common": "^2.6",
19-
"phpunit/phpunit": "^7.1"
17+
"doctrine/collections": "^1.6",
18+
"doctrine/common": "^2.13",
19+
"phpunit/phpunit": "^7.5 || ^8.5 || ^9.5"
2020
},
2121
"autoload": {
2222
"psr-4": {

tests/DeepCopyTest/Reflection/ReflectionHelperTest.php

+2-3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
namespace DeepCopyTest\Reflection;
44

5+
use DeepCopy\Exception\PropertyException;
56
use DeepCopy\Reflection\ReflectionHelper;
67
use PHPUnit\Framework\TestCase;
78
use ReflectionClass;
@@ -60,13 +61,11 @@ public function provideProperties()
6061
];
6162
}
6263

63-
/**
64-
* @expectedException \DeepCopy\Exception\PropertyException
65-
*/
6664
public function test_it_cannot_retrieve_a_non_existent_prperty()
6765
{
6866
$object = new ReflectionHelperTestChild();
6967

68+
$this->expectException(PropertyException::class);
7069
ReflectionHelper::getProperty($object, 'non existent property');
7170
}
7271
}

0 commit comments

Comments
 (0)