1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\Oauth\Test\Unit;
- use \Magento\Framework\Oauth\OauthInputException;
- use Magento\Framework\Phrase;
- class OauthInputExceptionTest extends \PHPUnit\Framework\TestCase
- {
- /**
- * @return void
- */
- public function testGetAggregatedErrorMessage()
- {
- $exception = new OauthInputException();
- foreach (['field1', 'field2'] as $param) {
- $exception->addError(
- new Phrase('"%fieldName" is required. Enter and try again.', ['fieldName' => $param])
- );
- }
- $exception->addError(new Phrase('Message with period.'));
- $this->assertEquals(
- '"field1" is required. Enter and try again, "field2" is required. Enter and try again, Message with period',
- $exception->getAggregatedErrorMessage()
- );
- }
- /**
- * @return void
- */
- public function testGetAggregatedErrorMessageNoError()
- {
- $exception = new OauthInputException();
- $this->assertEquals('', $exception->getAggregatedErrorMessage());
- }
- }
|