1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?php
- /*
- * This file is part of PHP CS Fixer.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- * Dariusz Rumiński <dariusz.ruminski@gmail.com>
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
- namespace PhpCsFixer\Tests\Error;
- use PhpCsFixer\Error\Error;
- use PHPUnit\Framework\TestCase;
- /**
- * @internal
- *
- * @covers \PhpCsFixer\Error\Error
- */
- final class ErrorTest extends TestCase
- {
- public function testThatErrorTypeConstantValuesAreDifferent()
- {
- $this->assertNotSame(Error::TYPE_INVALID, Error::TYPE_EXCEPTION);
- $this->assertNotSame(Error::TYPE_EXCEPTION, Error::TYPE_LINT);
- }
- public function testConstructorSetsValues()
- {
- $type = 123;
- $filePath = 'foo.php';
- $error = new Error(
- $type,
- $filePath
- );
- $this->assertSame($type, $error->getType());
- $this->assertSame($filePath, $error->getFilePath());
- }
- }
|