Kraken\_Unit\Util\Factory\_Partial\FactoryPartial::testApiGetParam_ReturnsSameObject_ForExistingKey PHP Метод

testApiGetParam_ReturnsSameObject_ForExistingKey() публичный Метод

    public function testApiGetParam_ReturnsSameObject_ForExistingKey()
    {
        $test = $this->getTest();
        $factory = $this->createFactory();
        $key = 'KEY';
        $std = new StdClass();
        $factory->bindParam($key, $std);
        $test->assertSame($std, $factory->getParam($key));
    }