This is an automated email from the ASF dual-hosted git repository.
adelbene pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git
The following commit(s) were added to refs/heads/master by this push:
new 06ba6a89e8 WICKET-7079 Guide updated with wicket-tester informations
06ba6a89e8 is described below
commit 06ba6a89e85eb52e182c27fb13414997d798a77c
Author: Andrea Del Bene <[email protected]>
AuthorDate: Tue Oct 17 18:35:49 2023 +0200
WICKET-7079 Guide updated with wicket-tester informations
---
.../src/main/asciidoc/helloWorld/helloWorld_1.adoc | 19 ++++++++++---------
wicket-user-guide/src/main/asciidoc/testing.adoc | 4 +++-
2 files changed, 13 insertions(+), 10 deletions(-)
diff --git a/wicket-user-guide/src/main/asciidoc/helloWorld/helloWorld_1.adoc
b/wicket-user-guide/src/main/asciidoc/helloWorld/helloWorld_1.adoc
index b7c750b016..4f34aff568 100644
--- a/wicket-user-guide/src/main/asciidoc/helloWorld/helloWorld_1.adoc
+++ b/wicket-user-guide/src/main/asciidoc/helloWorld/helloWorld_1.adoc
@@ -4,17 +4,18 @@ Wicket is available as a binary package on the main site
http://wicket.apache.o
|===
| *Module's name* | *Description* | *Dependencies*
| wicket-core | Contains the main classes of the framework, like class
_Component_ and _Application_. | wicket-request, wicket-util
+| wicket-tester | Contains common classes for unit testing (like
_WicketTester_) and test cases for wicket-core. | wicket-core
| wicket-request | This module contains the classes involved into web request
processing. | wicket-util
| wicket-util | Contains general-purpose utility classes for functional areas
such as I/O, lang, string manipulation, security, etc... | None
-| wicket-bean-validation | Provides support for JSR 303 standard validation. |
wicket-core
-| wicket-devutils | Contains utility classes and components to help developers
with tasks such as debugging, class inspection and so on. | wicket-core,
wicket-extensions
-|wicket-extensions | Contains a vast set of built-in components to build a
rich UI for our web application (Ajax support is part of this module). |
wicket-core
-|wicket-auth-roles | Provides support for role-based authorization. |
wicket-core
-|wicket-ioc | This module provides common classes to support Inversion Of
Control. It's used by both Spring and Guice integration module. | wicket-core
-|wicket-guice | This module provides integration with the dependency injection
framework developed by Google. | wicket-core, wicket-ioc
-|wicket-spring | This module provides integration with Spring framework. |
wicket-core, wicket-ioc
-|wicket-velocity | This module provides panels and utility class to integrate
Wicket with Velocity template engine. | wicket-core
-|wicket-jmx| This module provides panels and utility class to integrate Wicket
with Java Management Extensions. | wicket-core
+| wicket-bean-validation | Provides support for JSR 303 standard validation. |
wicket-core, wicket-tester
+| wicket-devutils | Contains utility classes and components to help developers
with tasks such as debugging, class inspection and so on. | wicket-core,
wicket-extensions, wicket-tester
+|wicket-extensions | Contains a vast set of built-in components to build a
rich UI for our web application (Ajax support is part of this module). |
wicket-core, wicket-tester
+|wicket-auth-roles | Provides support for role-based authorization. |
wicket-core, wicket-tester
+|wicket-ioc | This module provides common classes to support Inversion Of
Control. It's used by both Spring and Guice integration module. | wicket-core,
wicket-tester
+|wicket-guice | This module provides integration with the dependency injection
framework developed by Google. | wicket-core, wicket-ioc, wicket-tester
+|wicket-spring | This module provides integration with Spring framework. |
wicket-core, wicket-ioc, wicket-tester
+|wicket-velocity | This module provides panels and utility class to integrate
Wicket with Velocity template engine. | wicket-core, wicket-tester
+|wicket-jmx| This module provides panels and utility class to integrate Wicket
with Java Management Extensions. | wicket-core, wicket-tester
|wicket-objectsizeof-agent | Provides integration with Java agent libraries
and instrumentation tools. | wicket-core
|===
diff --git a/wicket-user-guide/src/main/asciidoc/testing.adoc
b/wicket-user-guide/src/main/asciidoc/testing.adoc
index 286054fd78..8c2f03c732 100644
--- a/wicket-user-guide/src/main/asciidoc/testing.adoc
+++ b/wicket-user-guide/src/main/asciidoc/testing.adoc
@@ -2,4 +2,6 @@ http://en.wikipedia.org/wiki/Test-driven_development[Test
Driven Development] ha
In this chapter we will see how to write unit tests for our applications and
components and we will learn how to use helper classes to simulate user
navigation and write acceptance tests without the need of any testing framework
other than JUnit.
-The JUnit version used in this chapter is 4.x.
+The JUnit version used in this chapter is 5.x.
+
+NOTE: from version 10 module _wicket-tester_ is required as test dependency in
order to access the utility classes used in this chapter.