This is an automated email from the ASF dual-hosted git repository. btellier pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/james-project.git
commit 6fe9e1c7484998b53522f02a42a30e671cfda9e9 Author: Benoit Tellier <[email protected]> AuthorDate: Wed Mar 31 10:21:14 2021 +0700 JAMES-3525 Run MailsShouldBeWellReceived on top of the memory server Enables quick debugging of this test contract --- server/container/guice/memory-guice/pom.xml | 6 ++++++ .../src/test/java/org/apache/james/MemoryJmapJamesServerTest.java | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/server/container/guice/memory-guice/pom.xml b/server/container/guice/memory-guice/pom.xml index f066516..806dc88 100644 --- a/server/container/guice/memory-guice/pom.xml +++ b/server/container/guice/memory-guice/pom.xml @@ -55,6 +55,12 @@ </dependency> <dependency> <groupId>${james.groupId}</groupId> + <artifactId>apache-james-mailbox-store</artifactId> + <type>test-jar</type> + <scope>test</scope> + </dependency> + <dependency> + <groupId>${james.groupId}</groupId> <artifactId>apache-mailet-icalendar</artifactId> <version>${project.version}</version> </dependency> diff --git a/server/container/guice/memory-guice/src/test/java/org/apache/james/MemoryJmapJamesServerTest.java b/server/container/guice/memory-guice/src/test/java/org/apache/james/MemoryJmapJamesServerTest.java index 274d6f0..618af91 100644 --- a/server/container/guice/memory-guice/src/test/java/org/apache/james/MemoryJmapJamesServerTest.java +++ b/server/container/guice/memory-guice/src/test/java/org/apache/james/MemoryJmapJamesServerTest.java @@ -39,7 +39,7 @@ class MemoryJmapJamesServerTest { } @Nested - class JmapJamesServerTest implements JmapJamesServerContract { + class JmapJamesServerTest implements JmapJamesServerContract, MailsShouldBeWellReceived { @RegisterExtension JamesServerExtension jamesServerExtension = extensionBuilder().build(); } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
