Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
PayflowadvancedTest.php
Go to the documentation of this file.
1 <?php
7 
11 
12 class PayflowadvancedTest extends \PHPUnit\Framework\TestCase
13 {
17  private $model;
18 
19  protected function setUp()
20  {
21  $this->model = (new ObjectManager($this))->getObject(Payflowadvanced::class);
22  }
23 
27  public function testGetInfoBlockType()
28  {
29  static::assertEquals(Info::class, $this->model->getInfoBlockType());
30  }
31 }