File "Issue523Test.php"
Full Path: /www/wwwroot/shphe-en.com/smsapi/api_sdk/vendor/phpunit/phpunit/tests/Regression/Trac/523/Issue523Test.php
File size: 261 bytes
MIME-type: --
Charset: utf-8
<?php
class Issue523Test extends PHPUnit_Framework_TestCase
{
public function testAttributeEquals()
{
$this->assertAttributeEquals('foo', 'field', new Issue523());
}
};
class Issue523 extends ArrayIterator
{
protected $field = 'foo';
}