public function testWatchMultiple()
 {
     $actions = ['test1', 'test2'];
     foreach ($actions as $index => $action) {
         $this->pheanstalk->expects($this->at($index))->method('watch')->with($action);
     }
     $this->manager->watch($actions);
 }