@@ -64,27 +64,27 @@ public function testGetValueFailsIfNoSuchIndex()
6464 }
6565
6666 #[DataProvider('getValidPropertyPaths ' )]
67- public function testSetValue ($ collection , $ path )
67+ public function testSetValue ($ collection , $ path, $ value )
6868 {
6969 $ this ->propertyAccessor ->setValue ($ collection , $ path , 'Updated ' );
7070
7171 $ this ->assertSame ('Updated ' , $ this ->propertyAccessor ->getValue ($ collection , $ path ));
7272 }
7373
7474 #[DataProvider('getValidPropertyPaths ' )]
75- public function testIsReadable ($ collection , $ path )
75+ public function testIsReadable ($ collection , $ path, $ value )
7676 {
7777 $ this ->assertTrue ($ this ->propertyAccessor ->isReadable ($ collection , $ path ));
7878 }
7979
8080 #[DataProvider('getValidPropertyPaths ' )]
81- public function testIsWritable ($ collection , $ path )
81+ public function testIsWritable ($ collection , $ path, $ value )
8282 {
8383 $ this ->assertTrue ($ this ->propertyAccessor ->isWritable ($ collection , $ path ));
8484 }
8585
8686 #[DataProvider('getInvalidPropertyPaths ' )]
87- public function testIsNotWritable ($ collection , $ path )
87+ public function testIsNotWritable ($ collection , $ path, $ value )
8888 {
8989 $ this ->assertFalse ($ this ->propertyAccessor ->isWritable ($ collection , $ path ));
9090 }
0 commit comments