* Dariusz RumiƄski * * 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()); } }