コード例 #1
0
ファイル: TestCaseTest.php プロジェクト: TrueType/phpunit
 /**
  * @test
  */
 public function protectedStaticPropertyForAccessibleMockObjectCanSetOriginal()
 {
     $newValue = 'New value ' . microtime();
     $this->accessibleMock->_setStatic('protectedStaticProperty', $newValue);
     self::assertSame($newValue, ProtectedClass::getStaticProperty());
 }