You are here

public function Issue581Test::testExportingObjectsDoesNotBreakWindowsLineFeeds in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/phpunit/tests/Regression/GitHub/581/Issue581Test.php \Issue581Test::testExportingObjectsDoesNotBreakWindowsLineFeeds()

File

vendor/phpunit/phpunit/tests/Regression/GitHub/581/Issue581Test.php, line 4

Class

Issue581Test

Code

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,
  ));
}