Boo.BooLangStudioSpecs.WhenParsingCodeStringsWithDoubleWhackLineComments.LastValidTokenShouldBeTheCommentToken C# (CSharp) Method

LastValidTokenShouldBeTheCommentToken() private method

private LastValidTokenShouldBeTheCommentToken ( ) : void
return void
        public void LastValidTokenShouldBeTheCommentToken()
        {
            Assert.True(tokens[tokens.Count - 1].Type == TokenType.Comment, "Not expected tokentype: " + tokens[tokens.Count - 1].Type.ToString());
        }