You are here

Issue523Test.php in Zircon Profile 8

Same filename and directory in other branches
  1. 8.0 vendor/phpunit/phpunit/tests/Regression/523/Issue523Test.php

File

vendor/phpunit/phpunit/tests/Regression/523/Issue523Test.php
View source
<?php

class Issue523Test extends PHPUnit_Framework_TestCase {
  public function testAttributeEquals() {
    $this
      ->assertAttributeEquals('foo', 'field', new Issue523());
  }

}
class Issue523 extends ArrayIterator {
  protected $field = 'foo';

}

Classes

Namesort descending Description
Issue523
Issue523Test