Assertions for Wiser SMTP test server from subethamail
Paul Campbell
0d987fb6fb
* Bump kemitix-checkstyle-ruleset from 4.1.1 to 5.2.0 * Bump kemitix-maven-tiles from 0.9.0 to 2.0.0 * [changelog] reformat in org-mode * [changelog] update for next-release * [jenkins] remove sonarcloud * Bump kemitix-checkstyle from 5.2.0 to 5.3.2 * Bump kemitix-maven-tiles form 2.0.0 to 2.1.1 * Suppress spotbugs warnings about softening checked exceptions * [changelog] adjust heading levels and update next release * Bump kemitix-maven-tiles from 2.1.1 to 2.1.2 |
||
---|---|---|
src | ||
.gitignore | ||
CHANGELOG.org | ||
Jenkinsfile.groovy | ||
LICENSE.txt | ||
pom.xml | ||
README.md |
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);
}