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

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

    public function testApiGetParam_ThrowsException_ForNonExistingKey()
    {
        $test = $this->getTest();
        $test->setExpectedException(IllegalFieldException::class);
        $factory = $this->createFactory();
        $key = 'KEY';
        $factory->getParam($key);
    }