Skip to content

Commit

Permalink
improve documentation, closed #587
Browse files Browse the repository at this point in the history
It is not possible to merge test-support with test-spi-support because of circular dependencies (e.g. "spi" requires "WithTimeZone").
  • Loading branch information
dfa1 committed Dec 23, 2023
1 parent f8ffff4 commit 7028af1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
4 changes: 3 additions & 1 deletion spi-test-support/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,12 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
/**
* This module contains helpers specifically designed for spi classes.
*/
module hosh.spi.test.support {
requires hosh.spi;

requires org.assertj.core;
requires org.mockito;

}
5 changes: 5 additions & 0 deletions test-support/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/

/**
* This module contains generic test helpers to be used by any modules (including spi).
* So, it cannot depend on spi classes.
*/
module hosh.test.support {
requires java.logging;

Expand Down

0 comments on commit 7028af1

Please sign in to comment.