aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/before
diff options
context:
space:
mode:
Diffstat (limited to 'test/transform/resource/before')
-rw-r--r--test/transform/resource/before/EqualsAndHashCodeExplicitInclude.java4
-rw-r--r--test/transform/resource/before/ToStringExplicitInclude.java4
2 files changed, 8 insertions, 0 deletions
diff --git a/test/transform/resource/before/EqualsAndHashCodeExplicitInclude.java b/test/transform/resource/before/EqualsAndHashCodeExplicitInclude.java
new file mode 100644
index 00000000..06b77f14
--- /dev/null
+++ b/test/transform/resource/before/EqualsAndHashCodeExplicitInclude.java
@@ -0,0 +1,4 @@
+@lombok.EqualsAndHashCode(onlyExplicitlyIncluded = true)
+class EqualsAndHashCodeExplicitInclude {
+ int x;
+}
diff --git a/test/transform/resource/before/ToStringExplicitInclude.java b/test/transform/resource/before/ToStringExplicitInclude.java
new file mode 100644
index 00000000..31687bc6
--- /dev/null
+++ b/test/transform/resource/before/ToStringExplicitInclude.java
@@ -0,0 +1,4 @@
+@lombok.ToString(onlyExplicitlyIncluded = true)
+class ToStringExplicitInclude {
+ int x;
+}