Boo.BooLangStudioSpecs.WhenParsingMalformedStringTokensWithNoClosingQuotes.MalformedDoubleQuoteTokenShouldBeTreatedAsAStringToken C# (CSharp) Method

MalformedDoubleQuoteTokenShouldBeTreatedAsAStringToken() private method

        public void MalformedDoubleQuoteTokenShouldBeTreatedAsAStringToken()
        {
            //               0         1         2         3         4
            //               0123456678901234567890123456789012345678901
            rawCodeString = "print \"hello this should be a string token";
            // should be 41.. but the BooScanner.ResolveTokenStartAndEndIndex() puts
            // an extra num in because its expecting the closing quote.. harmless.
            Helper(rawCodeString, 6, 41);
        }