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

testCreateRepositoryManagerAdapter() public method

    public function testCreateRepositoryManagerAdapter()
    {
        $factory = new TestAdapterFactory();
        $this->adapterFactory->register('test', 'Testing', $factory);
        $createdAdapter = $this->adapterFactory->createRepositoryManager('test', [], $this->config);
        $this->assertInstanceOf(Adapter::class, $createdAdapter);
    }