1<?php
2class Issue503Test extends PHPUnit_Framework_TestCase
3{
4    public function testCompareDifferentLineEndings()
5    {
6        $this->assertSame(
7            "foo\n",
8            "foo\r\n"
9        );
10    }
11}
12