File tree 3 files changed +6
-6
lines changed
tests/DeepCopyTest/Reflection
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
/composer.phar
2
2
/composer.lock
3
3
/vendor /*
4
+ .phpunit.result.cache
Original file line number Diff line number Diff line change 14
14
"php" : " ^7.1 || ^8.0"
15
15
},
16
16
"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 "
20
20
},
21
21
"autoload" : {
22
22
"psr-4" : {
Original file line number Diff line number Diff line change 2
2
3
3
namespace DeepCopyTest \Reflection ;
4
4
5
+ use DeepCopy \Exception \PropertyException ;
5
6
use DeepCopy \Reflection \ReflectionHelper ;
6
7
use PHPUnit \Framework \TestCase ;
7
8
use ReflectionClass ;
@@ -60,13 +61,11 @@ public function provideProperties()
60
61
];
61
62
}
62
63
63
- /**
64
- * @expectedException \DeepCopy\Exception\PropertyException
65
- */
66
64
public function test_it_cannot_retrieve_a_non_existent_prperty ()
67
65
{
68
66
$ object = new ReflectionHelperTestChild ();
69
67
68
+ $ this ->expectException (PropertyException::class);
70
69
ReflectionHelper::getProperty ($ object , 'non existent property ' );
71
70
}
72
71
}
You can’t perform that action at this time.
0 commit comments