public static void GlobalBeforeTestRun()
 {
     Installer = new ExternalPythonInstaller();
     Installer.DownloadNeo4j();
     try
     {
         Installer.InstallServer();
         Installer.StartServer();
     }
     catch
     {
         try
         {
             GlobalAfterTestRun();
         }
         catch
         {
             /*Do Nothing*/
         }
         throw;
     }
     AuthToken = AuthTokens.Basic("neo4j", "neo4j");
     CreateNewDriver();
 }