Skip to content

Commit 2dc4da3

Browse files
committed
Link to AssertJ instead of Fest in testing chapter
1 parent 283fc94 commit 2dc4da3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/asciidoc/testing.adoc

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4448,7 +4448,7 @@ HtmlPage newMessagePage = submit.click();
44484448
----
44494449

44504450
Finally, we can verify that a new message was created successfully. The following
4451-
assertions use the https://code.google.com/p/fest/[FEST assertion library].
4451+
assertions use the http://joel-costigliola.github.io/assertj/[AssertJ] library.
44524452

44534453
[source,java]
44544454
----
@@ -5161,6 +5161,8 @@ Consult the following resources for more information about testing:
51615161
Used by the Spring Framework in its test suite.
51625162
* http://testng.org/[TestNG]: A testing framework inspired by JUnit with added support
51635163
for annotations, test groups, data-driven testing, distributed testing, etc.
5164+
* http://joel-costigliola.github.io/assertj/[AssertJ]: "__Fluent assertions for Java__"
5165+
including support for Java 8 lambdas, streams, etc.
51645166
* http://en.wikipedia.org/wiki/Mock_Object[Mock Objects]: Article in Wikipedia.
51655167
* http://www.mockobjects.com/[MockObjects.com]: Web site dedicated to mock objects, a
51665168
technique for improving the design of code within test-driven development.

0 commit comments

Comments
 (0)