Assertions for Wiser SMTP test server from subethamail
1bb6711534
* Bump spotbugs-annotations from 3.1.8 to 3.1.11 Bumps [spotbugs-annotations](https://github.com/spotbugs/spotbugs) from 3.1.8 to 3.1.11. - [Release notes](https://github.com/spotbugs/spotbugs/releases) - [Changelog](https://github.com/spotbugs/spotbugs/blob/release-3.1/CHANGELOG.md) - [Commits](https://github.com/spotbugs/spotbugs/compare/3.1.8...3.1.11) Signed-off-by: dependabot[bot] <support@dependabot.com> * [changelog] updated |
||
---|---|---|
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);
}