1234567891011121314151617181920212223242526 |
- <?php
- /**
- * Copyright © 2016 Magento. All rights reserved.
- * See COPYING.txt for license details.
- */
- use Magento\Composer\ConsoleArrayInputFactory;
- class ConsoleArrayInputFactoryTest extends \PHPUnit\Framework\TestCase
- {
- /**
- * @var ConsoleArrayInputFactory
- */
- protected $factory;
- protected function setUp()
- {
- $this->factory = new ConsoleArrayInputFactory();
- }
- public function testCreate()
- {
- $this->assertInstanceOf(\Symfony\Component\Console\Input\ArrayInput::class, $this->factory->create([]));
- }
- }
|