public List <ArgToken> GetTokenInfoTest(string args) { List <ArgToken> result = ArgLexer.GetTokenInfo(args); return(result); // TODO: add assertions to method ArgLexerTest.GetTokenInfoTest(String) }
private static string[] NextCommand() { DrawPrompt(); return(ArgLexer.Tokenize(Console.ReadLine())); }
public string[] TokenizeTest(string args) { string[] result = ArgLexer.Tokenize(args); return(result); // TODO: add assertions to method ArgLexerTest.TokenizeTest(String) }