示例#1
0
 /**
  * @test
  */
 public function protectedStaticPropertyForAccessibleMockObjectCanSetOriginal()
 {
     $newValue = 'New value ' . microtime();
     $this->accessibleMock->_setStatic('protectedStaticProperty', $newValue);
     self::assertSame($newValue, Tx_Phpunit_Tests_Unit_Fixtures_ProtectedClass::getStaticProperty());
 }