function ApcCacheSavingCase::testObject in APC - Alternative PHP Cache 7
Test the saving and restoring of an object.
File
- tests/
apc.test, line 153
Class
Code
function testObject() {
$test_object = new stdClass();
$test_object->test1 = $this
->randomName(100);
$test_object->test2 = 100;
$test_object->test3 = array(
'drupal1',
'drupal2' => 'drupal3',
'drupal4' => array(
'drupal5',
'drupal6',
),
);
cache_set('test_object', $test_object, $this->default_bin);
$cache = cache_get('test_object', $this->default_bin);
$this
->assertTrue(isset($cache->data) && $cache->data == $test_object, t('Object is saved and restored properly.'));
}