Yaffs site version 1.1
[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 }