aboutsummaryrefslogtreecommitdiffstats
path: root/tests/indent/java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/indent/java')
-rw-r--r--tests/indent/java/constructor_with_arguments_on_multiple_lines.java6
-rw-r--r--tests/indent/java/method_with_arguments_on_multiple_lines.java6
2 files changed, 12 insertions, 0 deletions
diff --git a/tests/indent/java/constructor_with_arguments_on_multiple_lines.java b/tests/indent/java/constructor_with_arguments_on_multiple_lines.java
new file mode 100644
index 000000000..bb97d4c62
--- /dev/null
+++ b/tests/indent/java/constructor_with_arguments_on_multiple_lines.java
@@ -0,0 +1,6 @@
+public class Testo {
+ public Testo(
+ String a
+ ) {
+ }
+}
diff --git a/tests/indent/java/method_with_arguments_on_multiple_lines.java b/tests/indent/java/method_with_arguments_on_multiple_lines.java
new file mode 100644
index 000000000..7eb7db18b
--- /dev/null
+++ b/tests/indent/java/method_with_arguments_on_multiple_lines.java
@@ -0,0 +1,6 @@
+public class Testo {
+ void hello(
+ String a
+ ) {
+ }
+}