class ClassWithNonPublicAttributes

Hierarchy

Expanded class hierarchy of ClassWithNonPublicAttributes

17 string references to 'ClassWithNonPublicAttributes'
Framework_AssertTest::testAssertPrivateStaticAttributeEquals in drupal/core/vendor/phpunit/phpunit/Tests/Framework/AssertTest.php
@covers PHPUnit_Framework_Assert::assertAttributeEquals
Framework_AssertTest::testAssertPrivateStaticAttributeNotEquals in drupal/core/vendor/phpunit/phpunit/Tests/Framework/AssertTest.php
@covers PHPUnit_Framework_Assert::assertAttributeNotEquals
Framework_AssertTest::testAssertProtectedStaticAttributeEquals in drupal/core/vendor/phpunit/phpunit/Tests/Framework/AssertTest.php
@covers PHPUnit_Framework_Assert::assertAttributeEquals
Framework_AssertTest::testAssertProtectedStaticAttributeNotEquals in drupal/core/vendor/phpunit/phpunit/Tests/Framework/AssertTest.php
@covers PHPUnit_Framework_Assert::assertAttributeNotEquals
Framework_AssertTest::testAssertPublicStaticAttributeEquals in drupal/core/vendor/phpunit/phpunit/Tests/Framework/AssertTest.php
@covers PHPUnit_Framework_Assert::assertAttributeEquals

... See full list

File

drupal/core/vendor/phpunit/phpunit/Tests/_files/ClassWithNonPublicAttributes.php, line 14

View source
class ClassWithNonPublicAttributes extends ParentClassWithProtectedAttributes {
  public static $publicStaticAttribute = 'foo';
  protected static $protectedStaticAttribute = 'bar';
  protected static $privateStaticAttribute = 'baz';
  public $publicAttribute = 'foo';
  public $foo = 1;
  public $bar = 2;
  protected $protectedAttribute = 'bar';
  protected $privateAttribute = 'baz';
  public $publicArray = array(
    'foo',
  );
  protected $protectedArray = array(
    'bar',
  );
  protected $privateArray = array(
    'baz',
  );

}

Members