Exemplo n.º 1
0
 public function setTrackerCacheGeneral(&$cacheContent)
 {
     $config = new Config();
     $cacheContent = $config->setTrackerCacheGeneral($cacheContent);
 }
 public function test_setTrackerCacheContent_ShouldGetValuesFromConfig()
 {
     Option::set('PrivacyManager.ipAddressMaskLength', '232');
     $content = $this->config->setTrackerCacheGeneral(array('existingEntry' => 'test'));
     $this->assertEquals(232, $content['PrivacyManager.ipAddressMaskLength']);
 }