Gc\Core\ConfigTest::testGetValue PHP Method

testGetValue() public method

Test
public testGetValue ( ) : void
return 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'));
    }