Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
AgreementsValidatorTest.php
Go to the documentation of this file.
1 <?php
7 
8 class AgreementsValidatorTest extends \PHPUnit\Framework\TestCase
9 {
13  protected $model;
14 
15  protected function setUp()
16  {
17  $this->model = new \Magento\Checkout\Model\AgreementsValidator();
18  }
19 
20  public function testIsValid()
21  {
22  $this->assertEquals(true, $this->model->isValid());
23  }
24 }