30 lines
		
	
	
		
			734 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			734 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
<?php
 | 
						|
/**
 | 
						|
 * Copyright © Magento, Inc. All rights reserved.
 | 
						|
 * See COPYING.txt for license details.
 | 
						|
 */
 | 
						|
namespace Magento\Customer\Model;
 | 
						|
 | 
						|
class FormTest extends \PHPUnit\Framework\TestCase
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * @var \Magento\Customer\Model\Form
 | 
						|
     */
 | 
						|
    protected $_model;
 | 
						|
 | 
						|
    protected function setUp(): void
 | 
						|
    {
 | 
						|
        $this->_model = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->create(
 | 
						|
            \Magento\Customer\Model\Form::class
 | 
						|
        );
 | 
						|
        $this->_model->setFormCode('customer_account_create');
 | 
						|
    }
 | 
						|
 | 
						|
    public function testGetAttributes()
 | 
						|
    {
 | 
						|
        $attributes = $this->_model->getAttributes();
 | 
						|
        $this->assertIsArray($attributes);
 | 
						|
        $this->assertNotEmpty($attributes);
 | 
						|
    }
 | 
						|
}
 |