Assertions for Wiser SMTP test server from subethamail
Find a file
dependabot[bot] f4ad26902f
Bump mon from 1.0.0 to 1.1.0
Bumps [mon](https://github.com/kemitix/mon) from 1.0.0 to 1.1.0.
- [Release notes](https://github.com/kemitix/mon/releases)
- [Changelog](https://github.com/kemitix/mon/blob/master/CHANGELOG)
- [Commits](https://github.com/kemitix/mon/compare/v1.0.0...v1.1.0)

Signed-off-by: dependabot[bot] <support@dependabot.com>
2018-10-05 05:51:14 +00:00
src Tidy up and refactoring 2018-09-01 15:24:40 +01:00
.gitignore Simplify .gitignore and remove ide project files 2018-08-23 19:55:14 +01:00
.travis.yml jenkins: switch to Jenkins and trunk based development 2018-08-23 20:06:10 +01:00
CHANGELOG Update CHANGELOG 2018-09-01 15:27:42 +01:00
Jenkinsfile.groovy jenkins: switch to Jenkins and trunk based development 2018-08-23 20:06:10 +01:00
LICENSE.txt Upgrade kemitix-parent to 5.1.1 to bring Java 9+ compatibility 2018-08-23 22:05:23 +01:00
pom.xml Bump mon from 1.0.0 to 1.1.0 2018-10-05 05:51:14 +00:00
README.md Add Build and Coverage Status badges to README.md 2016-06-02 21:43:41 +01:00

Build Status Coverage Status

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);
}