Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
ConsoleArrayInputFactoryTest.php
Go to the documentation of this file.
1 <?php
8 
9 class ConsoleArrayInputFactoryTest extends \PHPUnit\Framework\TestCase
10 {
11 
15  protected $factory;
16 
17  protected function setUp()
18  {
19  $this->factory = new ConsoleArrayInputFactory();
20  }
21 
22  public function testCreate()
23  {
24  $this->assertInstanceOf(\Symfony\Component\Console\Input\ArrayInput::class, $this->factory->create([]));
25  }
26 }