Current File : /home/jvzmxxx/wiki1/vendor/phpunit/phpunit/tests/Regression/GitHub/503/Issue503Test.php
<?php
class Issue503Test extends PHPUnit_Framework_TestCase
{
    public function testCompareDifferentLineEndings()
    {
        $this->assertSame(
            "foo\n",
            "foo\r\n"
        );
    }
}