DobTest.php 522 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. /**
  7. * Test class for \Magento\Customer\Block\Widget\Dob
  8. */
  9. namespace Magento\Customer\Block\Widget;
  10. class DobTest extends \PHPUnit\Framework\TestCase
  11. {
  12. public function testGetDateFormat()
  13. {
  14. $block = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->create(
  15. \Magento\Customer\Block\Widget\Dob::class
  16. );
  17. $this->assertNotEmpty($block->getDateFormat());
  18. }
  19. }