Skip to content

Commit 16b4a17

Browse files
committed
Additional Unit tests.
1 parent 6db7685 commit 16b4a17

File tree

7 files changed

+912
-369
lines changed

7 files changed

+912
-369
lines changed

TODO.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@
22
TODO:
33
==============
44

5+
- Consider integration with GitHub Actions and deploy zips there?
6+
57
- Add {@nx.block.hidden that would hide in javadoc, but eligible for includes
68
in other classes.
79

810
- Maybe: allows {@link } blocks to support strong typing
911
and avoid bad links.. When not using taglets, it would remain
1012
an actual link.
11-
1213

1314
- Add equiv. of "trimToNull" to "PropertyMatchers" so that blank values
1415
could be treated as null (i.e., non-existant).

lombok.config

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
lombok.log.fieldName = LOG
2+
lombok.toString.callSuper = call
23
lombok.equalsAndHashCode.callSuper = call
34
config.stopBubbling = true
45
lombok.addLombokGeneratedAnnotation = true

pom.xml

+7
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@
4848

4949
<!-- Test dependencies -->
5050
<ant.version>1.10.11</ant.version>
51+
<assertj.version>3.23.1</assertj.version>
5152
<junit-jupiter.version>5.8.1</junit-jupiter.version>
5253
<testcontainers.version>1.16.0</testcontainers.version>
5354

@@ -169,6 +170,12 @@
169170
</dependency>
170171

171172
<!-- Tests and provided. -->
173+
<dependency>
174+
<groupId>org.assertj</groupId>
175+
<artifactId>assertj-core</artifactId>
176+
<version>${assertj.version}</version>
177+
<scope>test</scope>
178+
</dependency>
172179
<dependency>
173180
<groupId>org.junit.jupiter</groupId>
174181
<artifactId>junit-jupiter</artifactId>

0 commit comments

Comments
 (0)