| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 | 
							- <?php
 
- /*
 
-  * This file is part of sebastian/comparator.
 
-  *
 
-  * (c) Sebastian Bergmann <sebastian@phpunit.de>
 
-  *
 
-  * For the full copyright and license information, please view the LICENSE
 
-  * file that was distributed with this source code.
 
-  */
 
- namespace SebastianBergmann\Comparator;
 
- use PHPUnit\Framework\TestCase;
 
- /**
 
-  * @covers \SebastianBergmann\Comparator\ComparisonFailure
 
-  *
 
-  * @uses \SebastianBergmann\Comparator\Factory
 
-  */
 
- final class ComparisonFailureTest extends TestCase
 
- {
 
-     public function testComparisonFailure(): void
 
-     {
 
-         $actual   = "\nB\n";
 
-         $expected = "\nA\n";
 
-         $message  = 'Test message';
 
-         $failure = new ComparisonFailure(
 
-             $expected,
 
-             $actual,
 
-             '|' . $expected,
 
-             '|' . $actual,
 
-             false,
 
-             $message
 
-         );
 
-         $this->assertSame($actual, $failure->getActual());
 
-         $this->assertSame($expected, $failure->getExpected());
 
-         $this->assertSame('|' . $actual, $failure->getActualAsString());
 
-         $this->assertSame('|' . $expected, $failure->getExpectedAsString());
 
-         $diff = '
 
- --- Expected
 
- +++ Actual
 
- @@ @@
 
-  |
 
- -A
 
- +B
 
- ';
 
-         $this->assertSame($diff, $failure->getDiff());
 
-         $this->assertSame($message . $diff, $failure->toString());
 
-     }
 
-     public function testDiffNotPossible(): void
 
-     {
 
-         $failure = new ComparisonFailure('a', 'b', false, false, true, 'test');
 
-         $this->assertSame('', $failure->getDiff());
 
-         $this->assertSame('test', $failure->toString());
 
-     }
 
- }
 
 
  |