Assertions for Wiser SMTP test server from subethamail
9f3ccd6abe
Bumps [spring-context-support](https://github.com/spring-projects/spring-framework) from 4.2.6.RELEASE to 5.0.8.RELEASE. - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v4.2.6.RELEASE...v5.0.8.RELEASE) Signed-off-by: dependabot[bot] <support@dependabot.com> |
||
---|---|---|
.idea | ||
src | ||
.gitignore | ||
.travis.yml | ||
CHANGELOG | ||
checkstyle.xml | ||
LICENSE | ||
nb-configuration.xml | ||
pom.xml | ||
README.md | ||
wiser-assertions.iml |
wiser-assertions
Assertions for Wiser SMTP test server from subethamail
Origin
Taken from Rafal Browiec WiserAssertions class.
Usage
@Before
public void setUp() throws IOException {
wiser = new Wiser(PORT);
wiser.start();
}
@After
public void tearDown() {
wiser.stop();
}
@Test
public void testMail() {
//given
...
//when
...
//then
WiserAssertions.assertReceivedMessage(wiser)
.from(sender)
.to(recipient_alpha)
.to(recipient_beta)
.withSubjectContains(subject_prefix)
.withSubjectContains(subject_suffix)
.withContentContains(message_element_1)
.withContentContains(message_element_2)
.withContentContains(message_element_3);
}