AkzeptanzTests.TrackerDriver.SpeichereAntwort C# (CSharp) Method

SpeichereAntwort() private method

private SpeichereAntwort ( ) : void
return void
        private void SpeichereAntwort()
        {
            _antwort = _tracker.StandardOutput.ReadLine();
            while (_tracker.StandardOutput.Peek() >= 0)
                _antwort += _tracker.StandardOutput.ReadLine();
        }