JBZoo\PHPUnit\DataTest::testRemove PHP Method

testRemove() public method

public testRemove ( )
    public function testRemove()
    {
        $data = new Data($this->_test);
        is('qwerty', $data->get('string'));
        $data->remove('string');
        isFalse($data->has('string'));
        isNull($data->get('string'));
    }