Tests.Parsing.Parse_uspSearchCandidateResumes_NoWhitespace C# (CSharp) Method

Parse_uspSearchCandidateResumes_NoWhitespace() private method

private Parse_uspSearchCandidateResumes_NoWhitespace ( ) : void
return void
        public void Parse_uspSearchCandidateResumes_NoWhitespace()
        {
            using (StringReader reader = new StringReader(Resources.AdventureWorks2014_dbo_uspSearchCandidateResumes))
            using (TSQLTokenizer lexer = new TSQLTokenizer(reader))
            {
                TokenComparisons.CompareStreamStartToList(
                    GetuspSearchCandidateResumesTokens()
                        .Where(t => !(t is TSQLWhitespace)).ToList(),
                    lexer);
            }
        }