1234567891011121314151617181920212223242526272829 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\Validator\Test\Unit;
- /**
- * Test case for \Magento\Framework\Validator\Exception
- */
- class ExceptionTest extends \PHPUnit\Framework\TestCase
- {
- /**
- * Testing \Magento\Framework\Validator\Exception::getMessage
- * @return void
- */
- public function testGetMessage()
- {
- $expectedMessage = 'error1' . PHP_EOL . 'error2' . PHP_EOL . 'error3';
- $messages = ['field1' => ['error1', 'error2'], 'field2' => ['error3']];
- $exception = new \Magento\Framework\Validator\Exception(
- null,
- null,
- $messages
- );
- $this->assertEquals($expectedMessage, $exception->getMessage());
- }
- }
|