Kraken\_Unit\Config\ConfigAwareObjectTest::testApiSetConfig_RemovesConfig_WhenSetToNull PHP Method

testApiSetConfig_RemovesConfig_WhenSetToNull() public method

    public function testApiSetConfig_RemovesConfig_WhenSetToNull()
    {
        $config = $this->createConfig();
        $aware = $this->createConfigAwareObject($config);
        $this->assertSame($config, $aware->getConfig());
        $aware->setConfig(null);
        $this->assertSame(null, $aware->getConfig());
    }