Issue581Test.php in Zircon Profile 8
Same filename and directory in other branches
File
vendor/phpunit/phpunit/tests/Regression/GitHub/581/Issue581Test.phpView source
<?php
class Issue581Test extends PHPUnit_Framework_TestCase {
public function testExportingObjectsDoesNotBreakWindowsLineFeeds() {
$this
->assertEquals((object) array(
1,
2,
"Test\r\n",
4,
5,
6,
7,
8,
), (object) array(
1,
2,
"Test\r\n",
4,
1,
6,
7,
8,
));
}
}
Classes
Name | Description |
---|---|
Issue581Test |