Kraken\_Unit\Config\ConfigAwareObjectTest::testApiSetConfig_SetsConfig PHP 메소드

testApiSetConfig_SetsConfig() 공개 메소드

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