Author: Victor Bocharsky (bocharsky.bw@gmail.com)
Inheritance: extends AbstractNamingStrategy
 public function testGetFunc()
 {
     $func = function (FileInfo $fileInfo) {
         return $fileInfo->toString();
     };
     $strategy = new CallbackNamingStrategy($func);
     $this->assertSame($func, $strategy->getCallback());
 }