AuthenticationStateTest.php 390 B

1234567891011121314151617
  1. <?php
  2. /**
  3. *
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. namespace Magento\Wishlist\Test\Unit\Model;
  8. use \Magento\Wishlist\Model\AuthenticationState;
  9. class AuthenticationStateTest extends \PHPUnit\Framework\TestCase
  10. {
  11. public function testIsEnabled()
  12. {
  13. $this->assertTrue((new AuthenticationState())->isEnabled());
  14. }
  15. }