private function cleanWorkspace()
 {
     $orchestrations = $this->client->getOrchestrations();
     foreach ($orchestrations as $orchestration) {
         if (strpos($orchestration['name'], self::TESTING_ORCHESTRATION_NAME) === false) {
             continue;
         }
         $this->client->deleteOrchestration($orchestration['id']);
     }
 }