ParseLine() public method

public ParseLine ( string line ) : void
line string
return void
Ejemplo n.º 1
0
 void HandleOutput(string s, bool error, Action <string, bool> writedel)
 {
     if (s == null)
     {
         return;
     }
     TAPParser.ParseLine(s);
     ForwardOutput(s, error, false, writedel);
 }
Ejemplo n.º 2
0
        public void Method_Name()
        {
            // arrange
            var sut = new TAPParser();

            // act
            sut.ParseLine("1..10");

            // assert
        }