Add test for multiline strings in classes just to be safe.

Though the test isn't broken, just adding a multiline string within a class test case just out of an abundance of caution.
This commit is contained in:
A Pottinger
2022-02-10 08:56:05 -08:00
parent 4ffd2e5898
commit 0a848442d5
3 changed files with 68 additions and 0 deletions

View File

@@ -425,6 +425,11 @@ public class ParserTests {
expectGood("multilinestr");
}
@Test
public void testMultilineStringClass() {
expectGood("multilinestrclass");
}
@Test
public void testMultiMultilineString() {
expectGood("multimultilinestr");