예제 #1
0
 /**
  * @test
  */
 public function protectedStaticPropertyForAccessibleMockObjectCanBeSet()
 {
     $newValue = 'New value ' . microtime();
     $this->accessibleMock->_setStatic('protectedStaticProperty', $newValue);
     self::assertSame($newValue, $this->accessibleMock->_getStatic('protectedStaticProperty'));
 }