diff options
author | Roel Spilker <r.spilker@gmail.com> | 2019-03-25 23:36:16 +0100 |
---|---|---|
committer | Roel Spilker <r.spilker@gmail.com> | 2019-03-26 00:00:42 +0100 |
commit | 4e7414038ad9df25fb6d2ee76dd22421e1ff7005 (patch) | |
tree | 8ad77bb929cd0f7e5e47f410c6df4d3b4b2912b7 /test/transform/resource/after-ecj/NonNullWithAssertion.java | |
parent | e4b61e1263eb0eb832eb6cfbd97ad92e869ca27e (diff) | |
download | lombok-4e7414038ad9df25fb6d2ee76dd22421e1ff7005.tar.gz lombok-4e7414038ad9df25fb6d2ee76dd22421e1ff7005.tar.bz2 lombok-4e7414038ad9df25fb6d2ee76dd22421e1ff7005.zip |
[i2078] Add possibility to generate assert on `@NonNull`
Diffstat (limited to 'test/transform/resource/after-ecj/NonNullWithAssertion.java')
-rw-r--r-- | test/transform/resource/after-ecj/NonNullWithAssertion.java | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/test/transform/resource/after-ecj/NonNullWithAssertion.java b/test/transform/resource/after-ecj/NonNullWithAssertion.java new file mode 100644 index 00000000..d6f2b0f1 --- /dev/null +++ b/test/transform/resource/after-ecj/NonNullWithAssertion.java @@ -0,0 +1,18 @@ +public class NonNullWithAssertion { + private @lombok.NonNull @lombok.Setter String test; + public NonNullWithAssertion() { + super(); + } + public void testMethod(@lombok.NonNull String arg) { + assert (arg != null): "arg is marked non-null but is null"; + System.out.println(arg); + } + public void testMethodWithIf(@lombok.NonNull String arg) { + if ((arg == null)) + throw new NullPointerException("Oops"); + } + public @java.lang.SuppressWarnings("all") void setTest(final @lombok.NonNull String test) { + assert (test != null): "test is marked non-null but is null"; + this.test = test; + } +}
\ No newline at end of file |