public function testGetWithMethodLock()
 {
     $decorator = new Decorator(new TestService(), 'test_service');
     $lock = new Lock();
     $lock->setDriver(new Debug())->setMethod('sleep1');
     $decorator->addLock($lock);
     $decorator->sleep1();
     $decorator->sleep(0);
 }