ImboCliUnitTest\Command\CommandTest::testCanSetAndGetConfiguration PHP Method

testCanSetAndGetConfiguration() public method

    public function testCanSetAndGetConfiguration()
    {
        $config = ['some' => 'config'];
        $this->command->setConfig($config);
        $this->assertSame($config, $this->command->getConfig());
    }