75ca8d45471a6e42e4afcbe7bfd5d90be222f5b1
[yaffs-website] / vendor / phpunit / phpunit / tests / Regression / GitHub / 503 / Issue503Test.php
1 <?php
2 class Issue503Test extends PHPUnit_Framework_TestCase
3 {
4     public function testCompareDifferentLineEndings()
5     {
6         $this->assertSame(
7             "foo\n",
8             "foo\r\n"
9         );
10     }
11 }