File "Issue503Test.php"

Full Path: /www/wwwroot/shphe-en.com/smsapi/api_sdk/vendor/phpunit/phpunit/tests/Regression/GitHub/503/Issue503Test.php
File size: 211 bytes
MIME-type: --
Charset: utf-8

<?php
class Issue503Test extends PHPUnit_Framework_TestCase
{
    public function testCompareDifferentLineEndings()
    {
        $this->assertSame(
            "foo\n",
            "foo\r\n"
        );
    }
}