22 lines
522 B
PHP
Executable File
22 lines
522 B
PHP
Executable File
<?php
|
|
/**
|
|
* Copyright © Magento, Inc. All rights reserved.
|
|
* See COPYING.txt for license details.
|
|
*/
|
|
|
|
/**
|
|
* Test class for \Magento\Customer\Block\Widget\Dob
|
|
*/
|
|
namespace Magento\Customer\Block\Widget;
|
|
|
|
class DobTest extends \PHPUnit\Framework\TestCase
|
|
{
|
|
public function testGetDateFormat()
|
|
{
|
|
$block = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->create(
|
|
\Magento\Customer\Block\Widget\Dob::class
|
|
);
|
|
$this->assertNotEmpty($block->getDateFormat());
|
|
}
|
|
}
|