Gush\Tests\Factory\AdapterFactoryTest::testCreateConfigurator PHP Method

testCreateConfigurator() public method

    public function testCreateConfigurator()
    {
        $repoManager = new TestAdapterFactory();
        $this->adapterFactory->register('test', 'Testing', $repoManager);
        $createdConfigurator = $this->adapterFactory->createConfigurator('test', $this->prophesize('Symfony\\Component\\Console\\Helper\\HelperSet')->reveal(), $this->config);
        $this->assertInstanceOf(Configurator::class, $createdConfigurator);
    }