AkzeptanzTests.TrackerDriver.SpeichereAntwort C# (CSharp) Méthode

SpeichereAntwort() private méthode

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