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

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

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