Gc\Core\ConfigTest::testGetValue PHP Метод

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

Test
public testGetValue ( ) : void
Результат void
    public function testGetValue()
    {
        $this->object->insert(array('identifier' => 'string_test', 'value' => 'string_result'));
        $this->assertEquals('string_result', $this->object->getValue('string_test'));
        $this->object->delete(array('identifier' => 'string_test'));
    }