aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/pretty/resource/after/TextBlocks.java25
-rw-r--r--test/pretty/resource/before/TextBlocks.java24
2 files changed, 49 insertions, 0 deletions
diff --git a/test/pretty/resource/after/TextBlocks.java b/test/pretty/resource/after/TextBlocks.java
new file mode 100644
index 00000000..4d2fc272
--- /dev/null
+++ b/test/pretty/resource/after/TextBlocks.java
@@ -0,0 +1,25 @@
+public class TextBlocks {
+ private String example = """
+ This should not be indented.
+ line 2
+ line 3
+ """;
+
+ private String ex2 = """
+ This should be though.
+ """;
+
+ private String ex3 = "This is a simple\nstring";
+
+ private String ex4 = """
+ """;
+
+ private String bizarroDent = """
+ foo
+ bar""" + "hey" + """
+ weird!""";
+
+ private String stringFolding = "hmmm" + """
+ line1
+ line2""";
+}
diff --git a/test/pretty/resource/before/TextBlocks.java b/test/pretty/resource/before/TextBlocks.java
new file mode 100644
index 00000000..247621c0
--- /dev/null
+++ b/test/pretty/resource/before/TextBlocks.java
@@ -0,0 +1,24 @@
+// version 13:
+public class TextBlocks {
+ private String example = """
+ This should not be indented.\nline 2
+ line 3
+ """;
+
+ private String ex2 = """
+ This should be though.
+ """;
+
+ private String ex3 = "This is a simple\nstring";
+
+ private String ex4 = """
+ """;
+
+ private String bizarroDent = """
+ foo\n bar""" + "hey" + """
+ weird!""";
+
+ private String stringFolding = "hmmm" + """
+ line1
+ line2""";
+}