public function testCacheFunctionWithVariousParameter()
 {
     $first = CacheHelper::cache_function('CacheHelperTest::helperFunction', 1, 'string');
     $second = CacheHelper::cache_function('CacheHelperTest::helperFunction', 2, 'string');
     $this->assertNotEquals($first, $second);
 }