@@ -55,7 +55,7 @@ public function setUp()
5555 }
5656
5757 /*** item base methods for property ***/
58- function testGetAncestor ()
58+ public function testGetAncestor ()
5959 {
6060 $ ancestor = $ this ->dateProperty ->getAncestor (0 );
6161 $ this ->assertNotNull ($ ancestor );
@@ -73,7 +73,7 @@ function testGetAncestor()
7373 $ this ->assertInstanceOf ('PHPCR\PropertyInterface ' , $ ancestor );
7474 $ this ->assertTrue ($ this ->dateProperty ->isSame ($ ancestor ));
7575 }
76- function testGetDepthProperty ()
76+ public function testGetDepthProperty ()
7777 {
7878 $ this ->assertEquals (2 , $ this ->createdProperty ->getDepth ());
7979 $ this ->assertEquals (4 , $ this ->dateProperty ->getDepth ());
@@ -115,7 +115,7 @@ public function testAccept()
115115 $ this ->createdProperty ->accept ($ mock );
116116 }
117117
118- function testGetPropertyName ()
118+ public function testGetPropertyName ()
119119 {
120120 $ name = $ this ->createdProperty ->getName ();
121121 $ this ->assertEquals ('jcr:created ' , $ name );
@@ -452,7 +452,6 @@ public function testGetLength()
452452 $ this ->assertEquals (29 , $ this ->dateProperty ->getLength ());
453453 }
454454
455-
456455 //binary length is tested in BinaryReadMethodsTest
457456
458457 // testGetLengthUnsuccessfull (return -1 on getLength) "should never happen" so no test
0 commit comments