AkzeptanzTests.TrackerDriver.Starte C# (CSharp) Method

Starte() public method

public Starte ( ) : void
return void
        public void Starte()
        {
            var assemble = Assembly.GetExecutingAssembly();
            var path = new DirectoryInfo(Path.GetDirectoryName(assemble.Location));
            Console.WriteLine(path);

            _tracker = Process.Start(new ProcessStartInfo
                                         {
                                             FileName = "NerdGolfTracker.exe",
                                             UseShellExecute = false,
                                             RedirectStandardOutput = true,
                                             RedirectStandardInput = true,
                                             CreateNoWindow = true,
                                         });
            SpeichereAntwort();
        }