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

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

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